// JavaScript Document
	  $(document).ready(function(){
			$("#nav-one li").hover(
				function(){ $("ul", this).fadeIn(400); }, 
				function() { } 
			);
	  	if (document.all) {
				$("#nav-one li").hoverClass ("sfHover");
			}
	  });
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	  


$(function() {
    $('#sidebanners').cycle({ 
    fx:     'scrollDown', 
    easing: 'bounceout', 
	timeout: 10000,
    delay:  10 
});
});

$(function() {
    $('#flashhead').cycle({ 
    fx:     'scrollDown', 
    easing: 'bounceout', 
	timeout: 20000,
    delay:  20 
});
});