$(document).ready(function(){
	$('ul.sf-menu').superfish({
		delay: 300,
		speed: 'fast',
		autoArrows: false,
		dropShadows: false
	}); 
	
	$('.msgok').each(coolReveal);
	$('.msgerror').each(coolReveal);

	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});

function coolReveal() {
	$(this).hide();
	$(this).slideDown('slow');
}










