$(document).ready( function() {
	
	$('a.switchForm').click( function(e) {toggleAdv();e.preventDefault();});
	
	if($('#hotimgs').length != 0)
	{
		$("a.higal").fancybox({
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	true
		});
	}
	$('.hotelList').bind({	click: function() { document.location.href= $('.hoturi',this).attr('href') },
							mouseenter: function(){
											$(this).find('.rabatt').stop(true, true).fadeIn('fast');
											$(this).addClass('hover');
											$(this).animate({
														backgroundColor: '#F5F5F5',
													}, 700);
										},
							mouseleave: function(){
											$(this).find('.rabatt').stop(true, true).fadeOut('slow');
											$(this).removeClass('hover');
											$(this).animate({
														backgroundColor: '#ffffff'
													}, 150);
										}
						});

});

function toggleAdv () {
	$('#searchAdv').toggle();
	$('#searchSimple').toggle();
}
