var bing = {
	showWindow : function(){
		var body = document.getElementById("availPopup");
	  	body.style.display = "block"; // size you want body to increase to
	},
	hideWindow : function(){
		var body = document.getElementById("availPopup");
	  	body.style.display = "none"; // size you want body to increase to
	},
	ajaxPop : function(spot){
	 
		$.ajax({url:'/shc/s/BrowseStaticPageCmd?storeId='+storeId+'&catalogId='+catalogId+'&catalogInd=DZD&dzName=W4&vName=bingTC', success:function(data){
		$('#availPopup').remove();
			$(data).appendTo('body')
			bing.showWindow()
			$('#availPopup').css({top:spot.pageY - 100, left:spot.pageX * 4 / 6.5})
			$('#availPopup a.closeAvail').unbind().click(bing.hideWindow)
		}});
	}
}

$(function(){
		displayBingCashBackHeader();
	   if ( $('#bingimg').length > 0) {
	$('#bingimg').unbind().click(function(e){bing.ajaxPop(e)})
		}
	
		if ( $('#bingimg1').length > 0) {
			$('#bingimg1').unbind().click(function(e){bing.ajaxPop(e)})
		}	
	   $('.bingProd').unbind().click(function(e){bing.ajaxPop(e)})
})

function displayBingCashBackHeader(){
		 $('div#bingHeader').hide();
		 var BINGCSHBCK=getCookie('BINGCSHBCK');
	 		if(BINGCSHBCK!=null && BINGCSHBCK!='' && BINGCSHBCK=='ISx20070515x00001d'){
	         $('div#bingHeader').show();
        	}
}

