// JavaScript Document

$(document).ready(function(){

/* ========== Controls mouseover effects on Drop Down Menus ========== */
		
		$(".Category", this).stop(true, true).mouseover(function () {
		$(".DropDownList", this).stop(true, true).fadeTo(0, 0.95);
		$(".DropDownList", this).stop(true, true).addClass("Category");
			
			});
		
		$(".Category", this).stop(true, true).mouseout(function () {
		$(".DropDownList", this).stop(true, true).fadeTo(250, 0).delay(0).hide(0);
			});
		});

/* ======================================== */
