	var Page=({
		ini:function()
		{
			var els=$$('div.picmash');
			this.PicMash=[];
			for (i=0;i<els.length;i++)
			{
				this.PicMash[i]=new PicMash(els[i],{'w':425,'h':440},370);//initiate each flmstrip, yes we can have more than one gallery rotator
			}

			var els=$$('div.galrotator');//get all galrotator html elements
			this.Galleries=[];
			var i=0;
			for (i=0;i<els.length;i++)
			{
				this.Galleries[i]=new GalleryRotator(els[i],20,{'w':250,'h':187},{'w':300,'h':225});//initiate each gallery, yes we can have more than one gallery rotator
			}
			
			var els=$$('div.filmstrip');//get all galrotator html elements
			this.Filmstrips=[];
			for (i=0;i<els.length;i++)
			{
				this.Filmstrips[i]=new FilmStrip(els[i]);//initiate each flmstrip, yes we can have more than one gallery rotator
			}
		}
	});
	window.addEvent('domready',Page.ini.bind(Page));

