jQuery.jFastMenu = function(id){

	$(id + ' ul li').hover(function(){
		$(this).find('ul:first').animate({height:'show'}, 'fast');
		if($(this).attr("rel") != 'urunler') $('#urun_menu_div').animate({height:'hide', opacity:'hide'}, 'slow');
	},
	function(){
		$(this).find('ul:first').animate({height:'hide', opacity:'hide'}, 'slow');
	});
}
