// JavaScript Document



$(document).ready(function () {	
$('#mainSlideshow').cycle({ 
    fx:     'fade', 
    timeout: 5000,
	speed: 1000,
	easing: 'easeInOut'
	});
$('li.subMenuHover').hoverIntent(
		function() { $('.subMenuContainer', this).slideDown('fast'); },					   
		function() { $('.subMenuContainer', this).slideUp('fast'); }
	);


$('.dropMenu').hoverIntent(
		function() { $('.locationsSelect', this).slideDown('fast'); },					   
		function() { $('.locationsSelect', this).slideUp('fast'); }
	).css('height','40px');
});
