/**
*
*/
$(document).ready(function() {
$(".sellwell_s").each(function(){
$(this).mouseover(function(){
//$(this).click(function(){
$(".sellwell_m").hide();
$(".sellwell_s").show();
$(this).hide();
$(this).parent().children().eq(0).show();
});
});
$(".sellwell_m").each(function(){
//$(this).children().eq(0).children().eq(0).show();
$(this).children().eq(0).hover(
function(){
$(this).children().eq(0).show();
},
function(){
$(this).children().eq(0).hide();
}
).click(function(){
if(!$(this).children().eq(0).hasClass("isShow")) {
window.location = $("#GLOBAL_URL").val() + "/sing.html?pid=" +$(this).parent().attr("rel");
}
});
});
$(".sellwell_m_shop").hover(
function(){ $(this).addClass("isShow").css("background","url('../new_include/images/roll_cart2.png') no-repeat 2px 2px"); },
function(){ $(this).removeClass("isShow").css("background","url('../new_include/images/roll_cart1.png') no-repeat 2px 2px"); }
).click(function(){
//$.growlUI($(this).parent().parent().attr("rel") + '已加入暫存清單');
if($("#HIDE_INPUUT_CUST_ISLOGIN").val()!="true"){
//alert("尚未登入");
$("#ajaxLogin").attr("href", "login_taaze_Ajax.html?keepThis=true&TB_iframe=true&height=420&width=600").trigger("click");
}else{
$.growlUI('已加入暫存清單');
addNextShopping($(this).parent().parent().attr("rel"));
}
});
});

