window.addEvent("domready", function(){
	//new Asset.images(['images/splash1.jpg', 'images/splash2.jpg', 'images/splash3.jpg', 'images/splash4.jpg', 'images/splashR.jpg', ]);	
	
	var fx1 = new Fx.Styles($('splash1'), {duration:500, wait:false});
	
	/* mouseover */
	$('splash1').addEvent('mouseover', function() {
		fx1.start({
			'opacity': 0.00001
		});
	});
	/* mouseout */
	$('splash1').addEvent('mouseout', function() {
		fx1.start({
			'opacity': 1
		});
	});
	
	var fx2 = new Fx.Styles($('splash2'), {duration:500, wait:false});
	
	/* mouseover */
	$('splash2').addEvent('mouseover', function() {
		fx2.start({
			'opacity': 0.00001
		});
	});
	/* mouseout */
	$('splash2').addEvent('mouseout', function() {
		fx2.start({
			'opacity': 1
		});
	});
	
	var fx3 = new Fx.Styles($('splash3'), {duration:500, wait:false});
	
	/* mouseover */
	$('splash3').addEvent('mouseover', function() {
		fx3.start({
			'opacity': 0.00001
		});
	});
	/* mouseout */
	$('splash3').addEvent('mouseout', function() {
		fx3.start({
			'opacity': 1
		});
	});
	
	var fx4 = new Fx.Styles($('splash4'), {duration:500, wait:false});
	
	/* mouseover */
	$('splash4').addEvent('mouseover', function() {
		fx4.start({
			'opacity': 0.00001
		});
	});
	/* mouseout */
	$('splash4').addEvent('mouseout', function() {
		fx4.start({
			'opacity': 1
		});
	});
	
});