// HOMEPAGE SLIDESHOW
$('#slides').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 8000, 
    pause: true,
    next:   '#next2', 
    prev:   '#prev2' 
});

function mySameHeight(elt) {
    var heightBlockMax=0;
    var propertie = (jQuery.support.opacity) ? "min-height" : "height"; 
    jQuery(elt).each(function(){ 
        var height = jQuery(this).height();
        if( height > heightBlockMax ) {
            heightBlockMax = height;
        }
    });
    jQuery(elt).css(propertie, heightBlockMax);
}
$(document).ready(function() {
    mySameHeight('.dest');
});

$(document).ready(function(){
	// hide #back-top first
	$("#back-top").hide();
	// fade in #back-top
	$(function () {
		$(window).scroll(function () {
			if ($(this).scrollTop() > 100) {
				$('#back-top').fadeIn();
			} else {
				$('#back-top').fadeOut();
			}
		});
		// scroll body to 0px on click
		$('#back-top a').click(function () {
			$('body,html').animate({
				scrollTop: 0
			}, 800);
			return false;
		});
	});

});
