jQuery.fn.nodeIndex=function(){return jQuery(this).prevAll().length};
	
jQuery(document).ready(function($){
	$("#menuhome li").not(".gioi-thieu").hover(function(){
		$(this).stop().animate({
				backgroundColor : "#dcdcdd"
			},400,function() {
		});
	},function(){
		$(this).stop().animate({
				backgroundColor : "#f2f5f9"
			},400,function() {
		});
	});
	
	$("#menuhome li:eq(3),#menuhome li:eq(5)").hover(function(){
		$(this).stop().animate({
				backgroundColor : "#393c3e"
			},400,function() {
		});
	},function(){
		$(this).stop().animate({
				backgroundColor : "#626971"
			},400,function() {
		});
	});
	
})

