// JavaScript Document

jQuery(document).ready(function($){
	$("#header li:first-child").css('background',"none");
	$("#top_cnt th:nth-child(2)").css('width',"230px");
	$("#top_cnt th:nth-child(4)").css('width',"222px");
	$("#f_pan li:first-child").addClass('f_pan_top');
	$("#f_navi li:last-child").css('background',"none");
	$(".flow_box li:last-child").css('margin-right',"0px");
	$("#shop_list li:nth-child(2)").css('margin-right',"0px");
	$("#shop_list li:nth-child(4)").css('margin-right',"0px");
	$("#shop_list li:nth-child(6)").css('margin-right',"0px");
	$("#shop_list li:nth-child(8)").css('margin-right',"0px");
	$("#shop_list li:nth-child(10)").css('margin-right',"0px");
	$("#shop_list li:nth-child(12)").css('margin-right',"0px");
	$("#shop_list li:nth-child(14)").css('margin-right',"0px");
	$(".box2_650 li:nth-child(2)").css('margin-right',"0px");
	
	
	var h = $("#main").height();
	
	//$("#contents").css('height',h);
});


        $(function() {
            var offset = $("#side").offset();
            var topPadding = 20;
            $(window).scroll(function() {
                if ($(window).scrollTop() > offset.top) {
                    $("#side").stop().animate({
                        marginTop: $(window).scrollTop() - offset.top + topPadding
                    });
                } else {
                    $("#side").stop().animate({
                        marginTop: 0
                    });
                };
            });
        });

