// JavaScript Document

jQuery(document).ready(function(){
	jQuery("#top-menu li").hover(
		function(){ jQuery("ul", this).css("display", "block"); }, 
		function() { jQuery("ul", this).css("display", "none");	} 
	);
	if (document.all) {
		jQuery("#top-menu li").hoverClass ("sfHover");
	}
});

jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
		jQuery(this).hover( 
			function() { jQuery(this).addClass(c);  },
			function() { jQuery(this).removeClass(c); }
		);
	});
};


function rollIn(e) {
	/*jQuery(e).animate({"backgroundColor":"#afafaf"},100);*/
}

function rollOut(e) {
	/*jQuery(e).animate({"backgroundColor":"#ebebeb"},100);*/
}
