﻿
/* NOTE: requires jquery*/
/* when built I used jquery 1.4.3 */
$(document).ready(function () {
    $(".navmain").hover(function () {
        $(this).find('.nav13').has('UL').css("display", "block");
    }, function () {
        $(this).find('.nav13').has('UL').css("display", "none");
    });
});

