$(document).ready(function(){
	if($('#shopNavi')){
		$("#shopNavi li img[src*='_on']").addClass("current");
		$("#shopBox > div.boxies").hide();
		$("#shopBox > div.boxies:first").show();
		
		$("#secSub ul li a img ,#shopNavi li img,input,#secSub img").mouseover(function(){
			$(this).css("cursor","pointer");
			if ($(this).attr("src")){
				$(this).attr("src",$(this).attr("src").replace("_off.", "_on."));
			}
		});
		
		$("#secSub ul li a img ,#shopNavi li img,input,#secSub img").mouseout(function(){
			$(this).css("cursor","default");
			if ($(this).attr("class")!="current"){
				$(this).attr("src",$(this).attr("src").replace("_on.", "_off."));
			}
		});
		
		$('#shopNavi li img').click(function(){
			$('#shopNavi li img').each(function(i){
				if($(this).attr("class")=="current"){
					$(this).removeClass("current");
					$(this).attr("src",$(this).attr("src").replace("_on.", "_off."));
				}
			});
			
			if ($(this).attr("src")){
				$(this).addClass("current");
				$(this).attr("src",$(this).attr("src").replace("_off.", "_on."));
			}
			
			$("#shopBox > div.boxies").hide();
			$("#shopBox > div.boxies").eq($("#shopNavi li img").index(this)).fadeIn();
		});
	}
});