
// Drop Down Menu Main Nav
$(document).ready(function() {
$('.dropdown').each(function () {
$(this).parent().eq(0).hover(function () {
$('.dropdown:eq(0)', this).show();
$('object').hide();
}, function () {
$('.dropdown:eq(0)', this).hide();
$('object').show();
});
});
});


