var Site = {
	
	start: function(){		
		if ($('homeContent'))		Site.slideshow();
		
		
		if ($('email-subscription')) {
		
			$('email-subscription').addEvents({
				'focus' : function() {
					if(this.value == 'Enter your email address') this.value = '';
				},
				'blur' : function() {
					if(this.value == '') this.value = 'Enter your email address';
				}
			});		
		
		}
		
		
	},
	slideshow: function(args) {
		myShow = new Slideshow('homeContent',{ 
			hu: 'slideshow/',
			images: ['picture01.jpg','picture02.jpg','picture03.jpg','picture04.jpg'],
			duration: [1000,7500],
			height: 308,
			width: 494,
			type: 'fade',
			top: 0
		});
	},
	
};

window.addEvent('domready', Site.start);

