
// BDL Hotels Homepage Tabbed Search Box
$(document).ready(function(){
    
    $("#hotel-select-wrap").hide();
	$("#special-offers-wrap").hide();
	
	
	$("#reservations-tab").click(function () {
	  $('#reservations-wrap').show();
	  $('#hotel-select-wrap').hide();
	  $('#special-offers-wrap').hide();
	  
	  $('#reservations-tab').css({ backgroundPosition:"0 0" });
	  $('#hotels-tab').css({ backgroundPosition:"0 -30px" });
	  $('#offers-tab').css({ backgroundPosition:"0 -30px" });
	  
      return false;
    });
	
    $("#hotels-tab").click(function () {
      $('#reservations-wrap').hide();
	  $('#hotel-select-wrap').show();
	  $('#special-offers-wrap').hide();
	  
	  $('#reservations-tab').css({ backgroundPosition:"0 -30px" });
	  $('#hotels-tab').css({ backgroundPosition:"0 0" });
	  $('#offers-tab').css({ backgroundPosition:"0 -30px" });
	  
      return false;
    });
	 
	$("#offers-tab").click(function () {
	  $('#reservations-wrap').hide();
      $('#hotel-select-wrap').hide();
	  $('#special-offers-wrap').show();
	  
	  $('#reservations-tab').css({ backgroundPosition:"0 -30px" });
	  $('#hotels-tab').css({ backgroundPosition:"0 -30px" });
	  $('#offers-tab').css({ backgroundPosition:"0 0" });
	  
      return false;
    });
    
    $("#ticker").newsTicker();
});
