/* =========== slideshow cycle =========== */
$(document).ready(function() {
    $('.pics').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

/* =========== THUMB HOVER effect=========== */
$(function() {
	$('.home-block-of-four-item').hover(function(){
		$(this).animate({marginTop:'-10px'},{queue:false,duration:300});
	}, function(){
		$(this).animate({marginTop:'0px'},{queue:false,duration:300});
	});
});



/* =========== ease up and down page to anchor effect =========== */
$(document).ready(function () {
	$.localScroll();
	$(".tour-whale-watch-buttons >  a").click(function () {
		$(".faq > li").removeClass('highlight');
		var str = $(this).attr("href");
		str = "a[name='" + str.substring(1) + "']";
		$(str).parent().addClass('highlight');

	});
});

