﻿$(document).ready(function(){


//Modal on page load
// select the overlay element - and "make it an overlay"
$("#facebox").overlay({
// custom top position
top: 90,
// some mask tweaks suitable for facebox-looking dialogs
mask: {
// you might also consider a "transparent" color for the mask
color: '#fff',
// load mask a little faster
loadSpeed: 200,
// very transparent
opacity: 0.8
},
// disable this for modal dialog-type of overlays
closeOnClick: true,
// load it immediately after the construction
load: true
});

// Modal on click
$("a[rel]").overlay({									
// disable this for modal dialog-type of overlays
closeOnClick: true,
mask: {
color: '#fff',
loadSpeed: 200,
opacity: 0.8
}
});

		
});
