$(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();					   		
	});
    /*
	$("#help input").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"]
	});
	*/
	$("#search-destination").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});


	$("#search-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"]
	});
		
	$('#help .button').click(function() {									  
		$('#help-screen').hide();	
	});

	$('#slides').innerfade({ 
		animationtype: 		'fade',// Type of animation 'fade' or 'slide' (Default: 'fade'), 
		speed: 				'slow',// Fading-/Sliding-Speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal'), 
		timeout: 			'7000',// Time between the fades in milliseconds (Default: '2000'), 
		type: 				'sequence',// Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'), 
		containerheight: 	'auto',// Height of the containing element in any css-height-value (Default: 'auto'),
		runningclass: 		'innerfade',// CSS-Class which the container get’s applied (Default: 'innerfade'),
		children: 			null// optional children selector (Default: null)
	}); 
	
	$('.click-self').click(function() {
		window.location = $(this).find('a').attr('href');
	});
		
	// initialize carousels
    $("#carousel-1").jCarouselLite({
		visible: 5,
		auto: 800,
		circular: true,
		speed: 1000					
    });
	
	$("#mini-guides").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		circular: true,
		speed: 600									   
    });
	
	$("#mini-guides123").jCarouselLite({	
	visible: 4,
		btnNext: ".next1",
		btnPrev: ".prev1",
		circular: false,
		speed: 600									   
    });
	
	
	$('.holiday').hover(function() {
		$(this).css('borderColor','#9dd3df');						 
		$(this).find('.upper-content').animate({top: '-50px'}, 250)							 
		$(this).find('.lower-content').animate({top: '50px'}, 250)							 
	}, function() {
		$(this).css('borderColor','#ccc');						 
		$(this).find('.upper-content').animate({top: '0px'}, 250)							 		
		$(this).find('.lower-content').animate({top: '0px'}, 250)							 
		});

});
