/**
 * namespace and site setup
 * 
 * @author Alec Hill
 */
(function(){

/**
 * create namespace
 */
if(window['com'] == undefined){ 
	window.com = { alechill: {} };
}else if(com['alechill'] == undefined){
	com.alechill = {};
}

// object for storing instances created for the site
com.alechill.Site = {};

/**
 * set up the site on domready
 */
window.addEvent('domready', function(){
	
	com.alechill.Site.projection_Flicker = new com.alechill.Flicker('projection');
	
	// externalise links
	com.alechill.ExternalLink.parseLinks();
	
	
});

})();
