var storesLoadLock=false;function getMoreStores(b,a){if(storesLoadLock){return;}storesLoadLock=true;$("#more_stores_button").addClass("more-bar-loading");$.getJSON("/api/getstores",{section:b,name:a,start:storesDisplayed,limit:storesLimit},displayMoreStores);}function displayMoreStores(a){if(!a.errors.length){$(".store-listings").append(a.html);storesDisplayed+=a.num;$("#store_num").html(storesDisplayed);if(a.notice){$(".cashback-disclaimer").css("display","block");}}else{if(debug){alert(a.errors[0]);}}$("#more_stores_button").removeClass("more-bar-loading");if(storesDisplayed>=storeCount){$("#more_stores_button").remove();}storesLoadLock=false;}var offersLoadLock=false;function getMoreOffers(b,a){if(offersLoadLock){return;}offersLoadLock=true;$("#more_offers_button").addClass("more-bar-loading");$.getJSON("/api/getoffers",{section:b,name:a,start:offersDisplayed,limit:offersLimit},displayMoreOffers);}function displayMoreOffers(a){if(!a.errors.length){$(".offer-listings").append(a.html);offersDisplayed+=a.num;$("#offer_num").html(offersDisplayed);if(a.notice){$(".cashback-disclaimer").css("display","block");}}else{if(debug){alert(a.errors[0]);}}$("#more_offers_button").removeClass("more-bar-loading");if(offersDisplayed>=offerCount){$("#more_offers_button").remove();}offersLoadLock=false;}function moreMouseOver(a){$(a).addClass("more-bar-over");}function moreMouseOut(a){$(a).removeClass("more-bar-over");}var offerHighlight=null;function highlightOffer(c,a,b){if(offerHighlight!=null){$(offerHighlight).remove();}offerHighlight=document.createElement("DIV");$(offerHighlight).css({position:"absolute",display:"block",border:"5px solid #FBD6C8",top:$(c).offset().top+"px",left:$(c).offset().left+"px",width:($(c).outerWidth()-10)+"px",height:($(c).outerHeight()-10)+"px","z-index":(a?100:10)});if(a){if(b){$(offerHighlight).html("<div style='cursor:pointer;position:absolute;width:100%;height:100%;top:0;left:0;' class='clickBar'></div><div style='border-top:5px solid #93d7ef;border-right:5px solid #93d7ef;border-bottom:5px solid #93d7ef;position:absolute;right:-90px;top:-5px;height:100%;width:75px;padding-left:10px;background:url(/static/i/share-gradient.gif) repeat-y top left;'><table style='height:100%' align='center'><tr><td style='height:100%;'><a title='Share using email' style='margin-right:8px;' class='shareEmail' href='javascript:void(0);'><img src='/static/i/bt-email.gif' alt='Email' /></a><a title='Share with Twitter' style='margin-right:8px;' target='_blank' href='/share/twitter/"+a+"/'><img src='/static/i/bt-twitter.gif' alt='Twitter'/></a><a title='Share with Facebook' target='_blank' href='/share/facebook/"+a+"/'><img src='/static/i/facebook_connect_icon.gif' alt='Facebook'/></a></div><div style='padding-top:3px;'><p style='padding:0;margin:0;'><em><a title='See more offers from this store' href='/stores/"+b+"/'>More offers</a></em></p></td></tr></table></div>");}else{$(offerHighlight).html("<div style='cursor:pointer;position:absolute;width:100%;height:100%;top:0;left:0;' class='clickBar'></div><div style='border-top:5px solid #93d7ef;border-right:5px solid #93d7ef;border-bottom:5px solid #93d7ef;position:absolute;right:-45px;top:-5px;height:100%;width:30px;padding-left:10px;background:url(/static/i/share-gradient.gif) repeat-y top left;'><table style='height:100%' align='center'><tr><td style='height:100%;'><a title='Share using email' style='padding:3px;' class='shareEmail' href='javascript:void(0);'><img src='/static/i/bt-email.gif' alt='Email' /></a><a title='Share with Twitter' style='padding:3px;' target='_blank' href='/share/twitter/"+a+"/'><img src='/static/i/bt-twitter.gif' alt='Twitter'/></a><a style='padding:3px;' title='Share with Facebook' target='_blank' href='/share/facebook/"+a+"/'><img src='/static/i/facebook_connect_icon.gif' alt='Facebook'/></a></td></tr></table></div>");}$(offerHighlight).find(".clickBar").click(function(){c.onclick();});$(offerHighlight).find(".shareEmail").click(function(){objOverlay=lootziOverlay("/share/email/"+a+"/",true);});}if($(c).find(".offerImage").length){$(c).find(".storeLogo").fadeOut("fast");$(c).find(".offerImage").fadeIn("fast");}$(offerHighlight).mouseleave(function(){$(offerHighlight).remove();if($(c).find(".offerImage").length){$(c).find(".offerImage").fadeOut("fast");$(c).find(".storeLogo").fadeIn("fast");}offerHighlight=null;});$("body").append(offerHighlight);}
