$(function(){

  $(window).resize(resizeHomeBackground);
  resizeHomeBackground();
  
  if ($("#slider").length) {    
    $('#slider').cycle({
  		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
  	});  
  }
  
  if ($("a.lightbox").length) {    
    $("a.lightbox").colorbox({'opacity': 0.85});
  }
  
  if ($('#booking_form_container').length){
    $('#booking_form_container, #booking_form_container input').click(goToHotelProfi);
    $('#booking_form_container select').change(goToHotelProfi);
    $('#booking_form_container form').submit(goToHotelProfi);
  }
  
});


function resizeHomeBackground(){
  var h = $(window).height();
  var w = h * 1.63;
  $('.backgroundsize body.home').css('background-size', w + 'px ' + h + 'px');
}

function goToHotelProfi(event){
  event.preventDefault();      
  window.location = 'http://mywebserver.hotel-profi.de/HotelProfiMyWeb9059';
  return false;
}
