/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


//USES JQUERY

 $(document).ready(function(){
$('#bnbclick').mouseover(function(){ $(this).css("cursor","pointer"); });
 $('#bnbclick').click(function(){
        window.location = "http://www.dublinks.com/bed-and-breakfasts/"
   //  $('#hotels-search-box').attr('class','hide');
    // $('#right-search-box').attr('class','show');
 });
 $('#hotelclick').mouseover(function(){ $(this).css("cursor","pointer"); });
  $('#hotelclick').click(function(){
	  
	   window.location = "http://www.dublinks.com/hotels/"
//$('#right-search-box').attr('class','hide');
  //   $('#hotels-search-box').attr('class','show');
     
 });
   

});

