function initialize(){
$(" #nav ul ").css({display: "none"}); // Opera Fix

$(" #nav li").hover(function(){
$(this).find('ul:first').stop(true, true).slideToggle(300);
},function(){
$(this).find('ul:first').stop(true, true).slideToggle(50);
});



$("a[rel]").overlay({ 
expose: 'grey', 
effect: 'apple', 
onBeforeLoad: function() { 
var wrap = this.getContent().find("div.wrap"); 
wrap.load(this.getTrigger().attr("href")); 
}  
}); 

};

$(document).ready(function(){					
initialize();
});

