﻿$(function() {
		   
	/*index*/	   
	$('body.c_index div#news dl dt:first').css('border-top','none');
	$('body.c_index div#news dl dd:first').css('border-top','none');
	$('body.c_index div#pickup dl dt:first').css('border-top','none');
	$('body.c_index div#pickup dl dd:first').css('border-top','none');
	$('body.c_index div#arrival dl dt:first').css('border-top','none');
	$('body.c_index div#arrival dl dd:first').css('border-top','none');
	
	//body.c_card_case.c_mens_goods #pagett { background:url(/collection/img/subhead/bg_mens_goods_card_case.png);}
	
	/*table coloring*/
	$("div#right div.sizelist tr:even").css("background-color", "#eee");
	$("div#right div.sizelist tr:odd").css("background-color", "#fff");
	$("div#right div.shoplist tr:even").css("background-color", "#eee");
	$("div#right div.shoplist tr:odd").css("background-color", "#fff");
    /*** scrollFollow ***/
	//$('#left_cont').scrollFollow({speed: 100,offset: 20});
	
	$("div#right div.detailinfo table#info td:first-child").css("padding-left","0px");
	
	
	var theC1 = $('body').attr('class').split(" ")[0];
	var theC2 = $('body').attr('class').split(" ")[1];
	//alert(theC2);
	$('div#left ul.categorylist li.'+theC2+'>a').css('background-position','0 -30px');
	$('div#left ul.categorylist li.'+theC2+'>a')
		.mouseover(function(){
			$(this).css('background-position','0 -30px');
			})
		.mouseout(function(){
			$(this).css('background-position','0 -30px');		
	});
	
	//$('div#rightin').minheight(350);
	//alert($('div#rightin').height());
	/*if($('div#rightin').height()<=350){
			$('div.page_navi').remove();
	}*/
	/*if($('div#rightin').height()<350){
		//alert($('div#rightin').height());
		$('div.page_navi').remove();
		if($('div#rightin').height()<100){
			$('div#rightin').height(350);
		}
	}*/
		
	/*** auto scroll ***/
    $('a.smsc').click(function () {
			$(this).blur();
			var targetOffset = $($(this).attr('href')).offset().top;
			$('html,body').animate({scrollTop: targetOffset}, 300);
            return false;
        });

});



