	window.addEvent('domready',function(){
		//SAMPLE 1
/*		
		
		var V3 = new viewer($$('#splash img)'),{
	mode: ['alpha'], 
	interval: 4200
});
*/

	var V3 = new viewer($('splash').getChildren(),{
	mode: ['alpha'], 
	interval: 5500
});
  V3.play(true);
		
		$('splash').addEvent('mouseenter',V3.stop.bind(V3));
		$('splash').addEvent('mouseleave',V3.play.bind(V3, [true]));
		$('imgnavi').addEvent('mouseenter',V3.stop.bind(V3));
		$('imgnavi').addEvent('mouseleave',V3.play.bind(V3, [true]));
		$('offer').addEvent('mouseenter',V3.stop.bind(V3));
		$('offer').addEvent('mouseleave',V3.play.bind(V3, [true]));

		$('prev').addEvent('click',V3.previous.bind(V3));
		$('next').addEvent('click',V3.next.bind(V3));
		

});

