﻿$jq(document).ready(function () {
    $jq('#menu-horizontal li.submenu').hover(
			function () { $jq('ul', this).css('display', 'block'); },
			function () { $jq('ul', this).css('display', 'none'); });
});

