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

