// JavaScript Document
$(function(){
	var sht=$(".main").height()>$(".side").height()?$(".main").height():$(".side").height();
	$(".side").css("height",sht);
})

$(function(){
	$(".nav_con a[rel='cur']").find(".T").css({top:-40});
	$(".nav_con a[rel='cur']").find(".B").animate({top:0},200);
	$(".nav_con a").hover(function(){
		$(this).find(".T").stop().animate({top:-40},200);
		$(this).find(".B").stop().animate({top:0},200);
	},function(){
		var cur=$(this).attr("rel")=="cur"?true:false;
		if(!cur){
			$(this).find(".T").stop().animate({top:0},300);
		    $(this).find(".B").stop().animate({top:40},300);
		}
	})
})
$(function(){
	$(".photo_box02").hover(function(){
		var html=$("<span class='showcase_title'>SHOWCASE</span>");
		var hastitle=$(this).find(".showcase_title").length>0?true:false;
		if(!hastitle){
			$(this).addClass("photo_box02_hover").children().append(html);
		}else{
			$(this).addClass("photo_box02_hover").find(".showcase_title").show();
		}
	},function(){
		$(this).removeClass("photo_box02_hover");
		$(".showcase_title").hide();
	})
	$(".photo_box07").hover(function(){
		var html=$("<span class='showcase_title'>GOLDEN LADIES</span>");
		var hastitle=$(this).find(".showcase_title").length>0?true:false;
		if(!hastitle){
			$(this).addClass("photo_box07_hover").children().append(html);
		}else{
			$(this).addClass("photo_box07_hover").find(".showcase_title").show();
		}
	},function(){
		$(this).removeClass("photo_box07_hover");
		$(".showcase_title").hide();
	})
	
	$(".csnav .prev").click(function(){
		var curp=parseInt($(".cson>ul").position().left);
		if(curp<=-600){
			curp=-600;
		}
		var num=$(".cson>ul>li").length;
		$(".cson>ul").animate({left:-600+curp},500);
		return false;
	})
	
	$(".csnav .next").click(function(){
		var curp=parseInt($(".cson>ul").position().left);
		if(curp>=0){
			curp=-600;
		}
		var num=$(".cson>ul>li").length;
		$(".cson>ul").animate({left:600+curp},500);
		return false;
	})
})
