$(function(){
	var len=$(".cosmetic_nav > li").length;
	//alert(len);
	var index=0;
	$(".cosmetic_nav li").mouseover(function(){
		index=$(".cosmetic_nav li").index(this);
		showCon(index);
	})
	$(".con").hover(
		function(){if(myTime){
			clearInterval(myTime);
			}
		},function(){
			myTime=setInterval(function(){
				showCon(index);
				index++;
				if(index==len) {index=0;}
			},3000)
		});			
	var myTime=setInterval(function(){
			showCon(index);
			index++;
			if(index==len){index=0;}
		},3000)
	})
function showCon(i){
	$(".cosmetic_nav > li")
		.eq(i).addClass("hover")
		.siblings().removeClass("hover");
	$(".cosmetic_con > div")
		.eq(i).show()
		.siblings().hide();
	$(".cosmetic_nav li > a")
		.removeClass("hover1")
		.eq(i).addClass("hover1");
		
}
