$(document).ready(function(){

$(".dropdown").mouseenter(function() {
if ($("#"+$(this).attr('rel')).is(":hidden")) {
$("#"+$(this).attr('rel')).show();

//var offset = $(this).children().offset();
//$("#"+$(this).attr('rel')).css({left:offset.left-500, top:offset.top+0});
//$("#"+$(this).attr('rel')).css({left:130, top:113});
}
}).mouseleave(function() {
if ($("#"+$(this).attr('rel')).is(":visible")) {
$("#"+$(this).attr('rel')).delay(100).hide(300);
}
});



$(".submenus").mouseenter(function() {
$(this).stop(true,true);
}).mouseleave(function() {
$(this).fadeOut(300);
});


});
