// javascript

$(function(){
	if ($('.splashes .splash_pane').length>1) {
		$('div.splash_holder').append('<div id="controls"><a href="#" id="next">Next</a> <a href="#" id="prev">previous</a></div>');
		$('div.splash_holder div#controls').hide();
		$('div.splash_holder').hover(function(){
			$('div.splash_holder div#controls').fadeIn('normal');
		},function() {
			$('div.splash_holder div#controls').fadeOut('normal');
		});
		$('.splashes').cycle({
			fx:"scrollHorz",
			timeout:6000,
			pause: true,
			speed:1500,
			next:'#next',
			prev:'#prev'
		});
	}
});