var homepage = {
	homeGallery: null,
	homeGallerySlider: null,
	homeGalleryFlash: null,
	homepageId : 0,
	init : function() {
		this.homeGallerySlider = new fx.Combo('homeGallerySlider', {height: true, opacity: false, width:true,  duration: 800});
		// For internet Explorer
		$('homeGallerySlider').style.background = "#ffffff";
		//
		this.homeGallerySlider.customSize(344,474);
		setTimeout(function() {homepage.showFlashGallery();}, 850);
	},
	showFlashGallery : function() {
		new ajax('images.php', {postBody: 'ajax=yes&action=displayHomepageFlash', update: $('homeGalleryFlash')});
	}
};
Behaviour.register(homepage);
Behaviour.addLoadEvent(function(){homepage.init();});