$(document).ready(function(){
	
	$("a[rel]").each(function(i) { 
	
		$(this).overlay({ 	
 		
    	// some expose tweaks suitable for modal dialogs 
    	expose: { 
        	color: '#000', 
        	loadSpeed: 200, 
        	opacity: 0.75 
    	}, 
 
    	closeOnClick: false 
    	
    	});
    });
    
});

