/* JQUERY NAV - ADDED MOUSELEAVE FUNCTION 10-10 */

jQuery(document).ready(function(){

    jQuery(".parent ul").hide();

    jQuery(".parent").hover(function () {

        jQuery(this).children("ul").toggle("fast");

    });
	
	jQuery(".parent").mouseleave(function () {

        jQuery(this).children("ul").toggle("fast");

    });

});

