﻿$(document).ready(function()
{
	$("img").ifixpng();
	
	// Banner animation
	$("#Banner span").hide();
	$("#Banner span").fadeIn(3000);

	// Navigation menu hover
	$("#Nav > ul > li").hoverIntent({
		sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		interval: 100, // number = milliseconds for onMouseOver polling interval    
		over: function() { $(this).find("ul:first").slideDown(); }, // function = onMouseOver callback (REQUIRED)    
		timeout: 200, // number = milliseconds delay before onMouseOut    
		out: function() { $(this).find("ul:first").slideUp(); }// function = onMouseOut callback (REQUIRED)    
	});
});