$('document').ready(function(){
	
	// FX for #menu.
	
	$("#menu li").hover(
		function(){
			$("ul", this).fadeIn("fast");
		}, 
		function(){ $("ul", this).hide(); }
	);
	
	$("#menu li").hoverClass("sfhover");
		
	// FX for .pagetop.
	if($('a.pagetop').length){
		$('a.pagetop').removeAttr('href');
		$('a.pagetop').click(function() { $.scrollTo('#header', 500); });
	}
	
});

$.fn.hoverClass = function(c) {
	return this.each(function(){
		//alert('');
		$(this).hover( 
			function() {
				$(this).addClass(c);
			},
			function() { $(this).removeClass(c); }
		);
	});
};	