/* Shadowbox function */
function shadowBox() {      

	Shadowbox.init({
		skipSetup: true,
		players: ["iframe"] //iframe player used for ajax calls, see lib docs for more options
	});
	
	window.onload = function(){
		//give each link a class of "gallery" to activate modal
		Shadowbox.setup("a.gallery", {
			height: 750,
			width: 700
		})
	}
}


       
 
/**
* JQuery Document Ready function 
* Calls all functions in order to run on JQuery Document Ready
*/
$(document).ready(function(){  
	
	shadowBox();
	
});                                

