﻿jQuery(document).ready(function() {
	jQuery("#ecmDropDownCategoryList ul").css({display: "none"}); // Opera Fix
	jQuery("#ecmDropDownCategoryList li.ecmDDTop").hoverIntent({
      	out: mouseOut,
      	over: mouseOn,
      	interval: 10,
      	sensitivity: 7,
      	timeout: 300
      });
});
function mouseOn() {
	jQuery(this).find('ul').css({visibility: "visible",display: "none"}).show(268);
    jQuery(this).addClass("current_page_parent");
}
function mouseOut() {
	jQuery(this).find('ul').css({visibility: "hidden"});
    jQuery(this).removeClass("current_page_parent");
}
