﻿        function getHotel(hotelId)
                {
                try
                    {
                    var strURL = 'engine/hotel.aspx?id=' + hotelId;                    
                    window.location.href = strURL;
                    }
                catch(err)
                    {
                    //ERRORS
                    window.alert(err);
                    }             
                }      
            function checkAvailability()
                {
                try
                    {
                    var arrival = $('.txtArrival').val(); 
                    var groupId = $('#ctl00_ddlHotels').val();
                    var strURL = 'engine/gavailability.aspx?gid=' + groupId + '&arrival=' + arrival;
                    
                    window.location.href = strURL;
                    }
                catch(err)
                    {
                    //ERRORS
                    window.alert(err);
                    }             
                }
                
            function checkAvailabilityMardi()
                {
                try
                    {
                    var arrival = "25/02/2012"; 
                    var groupId = "89";
                    var strURL = 'engine/gavailability.aspx?gid=' + groupId + '&arrival=' + arrival;
                    
                    window.location.href = strURL;
                    }
                catch(err)
                    {
                    //ERRORS
                    window.alert(err);
                    }             
                }

$(function(){ 
	
	// innerfade - http://medienfreunde.com/lab/innerfade/   
	$('#fader').innerfade({ speed: 700, timeout: 4000, type: 'sequence', containerheight: '234px' });

	// prettyPhoto - http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/   
	$("a[rel^='prettyPhoto']").prettyPhoto();

}); 
