﻿// -----MAIN MENU-----
// Script to control main menu's behavior
// Uses:  HomePageStyle.css
// Attach to:  MasterPage.Master
// Created by:  Hugo Giusti
// Modify by: Marcela Martinez

$(document).ready(function () {

	$('#mainMenu li:has(ul)').hoverIntent(toggle, toggle);
  

    $('.subMenu li:has(ul)').hover(function () {
        //desplegar el subSubMenu correcto
        $(this).children('a:first').next('.subSubMenu').slideToggle('fast');
    });

});


function toggle() {
	$(this).find('a').next('.subMenu').slideToggle('fast');
}
