// JavaScript Document


$(document).ready(function() {
 
// select the overlay element - and "make it an overlay"
$("a[rel]").overlay({
 
	// custom top position
	top: 160,
 
	// some mask tweaks suitable for facebox-looking dialogs
	mask: {
 
		// you might also consider a "transparent" color for the mask
		color: '#000',
 
		// load mask a little faster
		loadSpeed: 100,
 
		// very transparent
		opacity: 0.3
	},
 
	// disable this for modal dialog-type of overlays
	closeOnClick: false,
 
});
});
