$(document).ready(function() {
	if (!($.browser.msie) || !($.browser.version.substr(0,1)<7)) {
	    $("#lay-head-menu > ul > li > a")
		    .mouseenter(function(){
		        if(!$(this).parent().hasClass("active"))
					$(this).stop(true).animate({ 
					    height: "146px"
					}, 400);
			})
			.mouseleave(function(){
				if(!$(this).parent().hasClass("active"))
					$(this).stop(true).animate({ 
					    height: "129px"
					}, 200);
			});
	}
});
