//auto populate departure date
$(function(){
	$("#destSel").change(function() {
		var thisselect = '';
		thisselect = $('[@name=destination]').val();		
		$.post("includes/tbdGetDate.php", { destination: thisselect },
		function(data){	 
			$("select#dateSel").html(data); 
		}, "html");
	});
	$("#destSel").change();
});

// go to top - none
$(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr("href");if($(window).scrollTop()!="0"){$(this).fadeIn("slow")}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()=="0"){$(scrollDiv).fadeOut("slow")}else{$(scrollDiv).fadeIn("slow")}});$(this).click(function(){$("html, body").animate({scrollTop:0},"slow")})}});
$(function() {$("#toTop").scrollToTop();});

// google analytic  - jquery.gatracker.js
$(function(){
	$.gaTracker('UA-228053-20');
});