(function() { 
 	// setting up the main namespace which will be accessible by all other js files 
  var main = window.main = window.main || {}; 
 
	// initializing shadowbox
	$.getScript('/js/shadowbox.js', function() {
		Shadowbox.init({
		    handleOversize: "drag",
		    modal: true,
				listenOverlay:false,
				enableKeys:false
		});
	});

  // load anything else that should be loaded in 
	//$.getScript('/js/jquery.centerit.js');
	//$.getScript('/js/globals.js');
	
	//alert(window.location.href);
	//$.getScript('/js/main.js');
 
})(); 

