/*
	Description: Public UI JavaScript
	Author: Lance Willett
	Author URI: http://simpledream.net
	Please don't reuse without permission. Copyright WINGS Birding Tours Worldwide.  
*/

/*
	Show tour link teaser over banner image
*/
$(document).ready(function() {
	$("#banner").hoverIntent(
		function() {
			$("#teaser").fadeIn(200);
		},
		function() {
			$("#teaser").fadeOut(600);
		}
	);
});
