
/****************************************/
function menu_drop_downs() {
    itemNum0 = $('.inner-menu:eq(0)');
    itemNum1 = $('.inner-menu:eq(1)');

		function openUl() {
			$(this).children('ul').slideDown();
		}
		function closeUl() {
		    $(this).children('ul').slideUp();
		}
		itemNum0.hoverIntent(openUl, closeUl);
		itemNum1.hoverIntent(openUl, closeUl);  
}

					

/*****************Document ready***********************/
$(document).ready(function () {



    /*****************Functions calls***********************/
	menu_drop_downs();
	

});

