$(document).ready(function(){
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}
	$('.header').cycle({ 
	    fx:    'fade', 
	    pause:  1 
	});
	$('.OSitem').cycle({ 
	    fx:    'fade', 
	    speed: 1000,
	    next:   '.nextOffer', 
    	prev:   '.prevOffer'
	});
});
	  
$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};	
