$(document).ready(function(){
       // detail open
       
		$.divHover({"background-color":"#EFEFEF", "margin-left":"0"});
		$.slideFade({'slideUp':'fast'});
		$('.slideFadeBlock:not(:first)').hide();
		$('.slideFadeBlock:first').show();
		$('.slideFadeLabel:first').addClass('selected');

       // location.hash
       if( m = (/([0-9]{6})/.exec(location.hash)||[])[1]||null){
               $.show_detail(m);
       }
});
$("#copy").ready(function(){
       $(".product_name a").bind("click",$.show_detail);
});
$.extend({
       show_detail: function(id){
		var today = new Date();
        if(typeof(this)=="function"){
            get_file = "../item/"+id+".html";                   
        }
        else if(typeof(this) == "object"){
			tmp = $(this).attr("href").split("#");
	        get_file = "../item/"+tmp[1]+".html?"+today.getTime();	      
        } 
               $.get(get_file, function(data){
				   		if(document.getElementById("detail")){
							$("#detail").remove();
						}
                       $("#contents").prepend("<div id='detail' style='display:none'>"+data+"</div>");

						var detail_top = Math.max($(document).scrollTop(), 70);
						$('#detail').css('top', detail_top);

                       $("#detail").fadeIn();
                     
                       // detail close
                       $(".close a").bind("click",function(){
						$("#detail").fadeOut("normal",function(){
						        $("#detail").remove();
						});
						return false;
                       });       
               });
       }
});
