// This makes the entire block clickable.
// Feel free to add additional elements, such as div.clickable, etc.
// Last Edited: Josh Thomas 4-29-09

$(document).ready(function(){

	$(".clickable li, div.clickable").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

    if(document.getElementById('bts-a')) {
      document.getElementById('holiday-site-offer').style.cursor="pointer";
      $("blockquote.clickable").click(function(){	  
       window.location=$(this).find("a#bts-a").attr("href");return false;
       });
    }
    else if(document.getElementById('bts-b')) {
      document.getElementById('sch-coupon').style.cursor="pointer";
      $("blockquote.clickable").click(function(){	  
       window.location=$(this).find("a#bts-b").attr("href"); return false;
      });
    }
    else if(document.getElementById('holiday-site-offer')){
      document.getElementById('holiday-site-offer').style.cursor="";
	}
     else{
	if(document.getElementById('sch-coupon'))
		 document.getElementById('sch-coupon').style.cursor="";
	}

    $("div.overview-box").click(function(){
          window.location=$(this).find("a").attr("href"); return false;
    });

});
