(function($j){
	
	Website.registerNamespace('Website.Pages');
	
	Website.Pages.Home = {
		
		onReady: function(){
			
			// Load in the full size image urls from the 
			// rel tag of each link
			var imageUrls = [];
			$j('#ImageLinks li a').each(function(){
				imageUrls.push( $j(this).attr('rel') );
			});
			
			var linkGallery = new Website.Lib.LinkGallery();
			linkGallery.init('#ImageLinks li', '#ImageGalleryImage', imageUrls);
		}
			
	}
	
	
	$j().ready(function(){
		Website.Pages.Home.onReady();
	});
	
})(jQuery);

