// JavaScript Document



$(document).ready(function()
{
	
	$("div.dropDowns li.dropDownItem").hover(
		function()
		{
			$(this).addClass("dropDownItemHover").removeClass("dropDownItem");
			$(this).children("ul.dropDownPanel").addClass("hoverPanel").css("visibility","visible");
			
		}
		,
		function()
		{
			$(this).removeClass("dropDownItemHover").addClass("dropDownItem");
			$(this).children("ul.dropDownPanel").removeClass("hoverPanel").css("visibility","hidden");
		}											 
	);
	
	
	$("div.dropDowns ul.dropDownPanel li").hover(
		function()
		{
			$(this).addClass("hoverItem");
		}
		,
		function()
		{
			$(this).removeClass("hoverItem");
		}										 
	);
	
	
});
							   