// JavaScript Document

$(document).ready(function(){
	$("div.nav-top li").hover(function(){
		$(this).addClass("active");
	},function(){
		$(this).removeClass("active");
	});
	
	$("div.b-head div.item").hover(function(){
		$("div.b-head div.item").css("z-index", "4");
		$("div.b-head div.item-2").css("z-index", "3");
		$(this).css("z-index", "1000");
		$(this).animate({left:"0px", width:"100%"}, 300,function(){
		if ($(this).attr("id")=="prv")
			$("#corp-2").css("z-index", "1001");
		else
			$("#prv-2").css("z-index", "1001");
		});
	},function(){
		$("div.b-head div.item-2").css("z-index", "3");
		var unitWidth = $(this).parent().width() / $("div.b-head div.item").length;
		var index = $("div.b-head div.item").index(this);
		$(this).animate({left:index*unitWidth+'px', width:unitWidth+"px"}, 100);
	});
});

