// JavaScript Document
$(document).ready(function () {	
$('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');
});
