$(document).ready(function() {

	var defaultSearchLabel = 'Search';
	$("#search_query").focus(function() {
		if($(this).val() == defaultSearchLabel) $(this).val('');
	}).blur(function() {
		if($(this).val() == '') $(this).val(defaultSearchLabel);
	});

	$("ul.sf-menu").superfish({
		delay: 100,
		speed: 'fast'
	});	

	$('#featured_news').cycle({
		fx: 'scrollUp',
		pause: true,
		timeout: 5000,
		before: function() { $("a.view_all").fadeOut("fast"); },
		after: function() { $("a.view_all").fadeIn("slow"); }
	}); 
	$('#section_news').cycle({
		fx: 'fade',
		pause: true,
		timeout: 4000,
		speed: 300
	}); 
}); 

