jQuery(document).ready(function($){
 
$("a.mini-contact").overlay({ 
    expose: {
        color: '#fff',
        loadSpeed: 200,
        opacity: 0.9
    },
 
    onBeforeLoad: function() { 
        // grab wrapper element inside content 
       var wrap = this.getContent().find(".mini-contact-container"); 
 
       // load the page specified in the trigger 
        wrap.load(this.getTrigger().attr("href")); 
    } 
}); 
});
