$(function(){
	//$('html').width();
	//$(document).height();
	$(window).resize(resize__);
	resize__();
	
	$("#indexBtm img").hide();
	
	for (var i = 0; i < 8; i++) {
		if(i<6){
			$("#indexBtm a").eq(i).hover(function(){$(this).stop(true, false).fadeTo(100,0.6).fadeTo(1000,1.0);},function(){});
		}
		$("#indexBtm img").eq(i).delay(i*100+1200).fadeTo(1000,1);
	}	
});

function setCenterPos($target){
	var mLeft = Math.round(($('html').width() - $($target).width())*0.5) + 'px';
	$($target).css({"left":mLeft});
}

function resize__(){
	setCenterPos("#mainMenu");
	$('#mainMenu').height($(window).height());
	var _h = Math.round($(window).height()*0.5)-60 + "px";
	$("#indexTop").css({"margin-top":_h});
}



