 $(function(){
	/*$("#nav li:not(:first):not(:last)").hover();*/
	$(".grid_18 li").hover(function(){
		 $(this).find("h1")
				.addClass("teah_hover source_hover product_hover manage_hover");
	},function(){
		 $(this).find("h1")
				.removeClass("teah_hover source_hover product_hover manage_hover");
	});

	$(".grid_6 li").hover(function(){
	    var classname = $(this).attr("class");
		$(this).addClass(classname+"_hover");
	},function(){
		$(this).removeClass("dh_hover da_hover dc_hover");	
	}).click(function(){
		var url = $(this).find("a").attr("href");
		window.location = url;
	});
 });