$(window).load( function() {
	if ($('#homeHeader').length) {
		$('#homeHeader').cycle('resume');
	}
} );

$(document).ready( function() {
	$('#nav li').hover(
		$(this).addClass('sfhover'),
		$(this).removeClass('sfhover')
	);
		
	if ($('#homeHeader').length) {	
		$('#homeHeader').cycle({
			fx: "fade",
			timeout: 5000,
			cleartypeNoBg: true,
			pause: true
		}).cycle('pause');
	}
} );

