var Seren = 
{
	/**
	 * Start the page
	 * 
	 */
	start : function ()
	{

		if ($('landing')) {
			var bodyClass = ['home1', 'home2', 'home3', 'home4', 'home5', 'home6', 'home7'].getRandom();
			var body =  $(document.body).addClass(bodyClass);
		}
		
		if ($('sr-head')) {
			SqueezeBox.initialize();		 			 
			SqueezeBox.assign($$('a[rel=boxed][href^=#]'), {
				size: {x: 640, y: 510}
			});		
		}
	
	}
	
}
// domread -> load the page
window.addEvent('domready', Seren.start);