$(document).ready(function() {


	$('#holidays').glassTabber();
	$('#hotels').glassTabber();
	$('#flights').glassTabber();	
	
	Cufon.replace('h1, h2, h3, .smooth');
	
		
	$('#help-button').click(function() {
		$('#help-screen').show();					   
	});
	$('#close').click(function() {
		$('#help-screen').hide();					   		
	});
	
	/*
	$("#dropdown-destination").autocomplete({
    	source: ["Antigua", "Austria", "Balearic Islands", "Barbados", "Bermuda", "Brazil", "Bulgaria", "Canary Islands", "Cape Verde Islands", "Caribbean", "Costa Blanca", "Costa Brava", "Costa del Sol", "Costa Dorada", "Croatia", "Cuba", "Cyprus", "Dominican Republic", "Egypt", "France", "Fuerteventura", "Gambia", "Grand Cayman", "Greece Islands", "Greece Mainland", "Ibiza", "India", "Italy", "Jamaica", "Jordan", "Kenya", "Majorca", "Maldives", "Malta", "Mauritius", "Menorca", "Mexico", "Morocco", "Portugal", "Romania", "Seychelles", "Slovenia", "South Africa", "Spain", "Sri Lanka", "St Kitts and Nevis", "St Lucia", "Switzerland", "Tenerife", "Thailand", "Tobago", "Trinidad", "Tunisia", "Turkey", "United Arab Emirates", "United States of America"]
	});
	*/	
	
	$('.holiday').hover(function() {
		$(this).css('borderColor','#eb3d1b');		
		$(this).find('.upper-content').stop().animate({top: '-50px'}, 250)							 
		$(this).find('.lower-content').stop().animate({top: '50px'}, 250)							 
	}, function() {
		$(this).css('borderColor','#ccc');						 
		$(this).find('.upper-content').stop().animate({top: '0px'}, 250)							 		
		$(this).find('.lower-content').stop().animate({top: '0px'}, 250)							 
		});
	
	$('.holiday').click(function() {
		window.location	= $(this).find('a').attr('href');
	});

	// Initialise the fancybox for SEND AN ENQUIRY
	$('#hotel-offers-sidebar a.iframe').fancybox({
		'hideOnContentClick': 	true,
		'zoomSpeedIn':			0,
		'zoomSpeedOut':			0,
		'frameWidth':			665,
		'frameHeight':			500,
		'overlayShow':			true
	});		

});
