// javascript document var img_s_nob; var img_s_count; var img_n; function skuimginit(){ img_s_nob=0; img_n=0; img_s_count=$(".imglistcon img").length; $(".imglistcon img").click(showthis) if(img_s_count>5){ $(".imgpgup").click(scl_up); $(".imgpgdown").click(scl_down); } $(".imglistcon img:eq(0)").addclass("now"); $(".bgimg").html($(".tempimgcon img:eq(0)").clone()); $(".bgimg").hover(zoompic,hidezoom); } function scl_up(){ if(img_s_nob>0){ img_s_nob=img_s_nob-1 move_img_s(); } } function scl_down(){ if(img_s_nob"); var bigimgw=$(".zoomimg img").width() var bigimgh=$(".zoomimg img").height() var scalex=(bigimgw-$(".zoomimg").width())/262; var scaley=(bigimgh-$(".zoomimg").height())/197; var img_s_localx=($(document).innerwidth()-1000)/2+63; $(".bgimg").mousemove(function(e){ $(".zoomimg img").css("margin-left",-(e.pagex-img_s_localx)*scalex+"px"); $(".zoomimg img").css("margin-top",-(e.pagey-270)*scaley+"px"); }) } function hidezoom(){ $(".zoomimg").fadeout("fast"); } function nofun(){ } function skuinfotab(){ $(".tabcon").css("display","none"); $(".tabcon:eq(0)").css("display","block"); $(".tabctrl div a").attr("hidefocus","true"); $(".tabctrl div a").click(tabclk) } function tabclk(e){ $(".tabctrl div a").removeclass("now"); $(this).addclass("now"); var thisnum=$(this).index(".tabctrl div a"); $(".tabcon").css("display","none"); $(".tabcon:eq("+thisnum+")").css("display","block") }