$(document).ready(function() {
	$('#navigation > ul > li:last > a').css({'padding-right':'0px', 'border-right':'none'});
	
	$('#navigation > ul > li').hover(function(){	
		$(this).find('ul').show();		
	}, function(){
		$(this).find('ul').hide();
	});
	
	$('#splasher img:first').addClass('active');

	setInterval('switchSplasher()', 6000);

	
	
});

function switchSplasher()
{
	var $current = $('#splasher img.active');
	var $next = $current.next('img');
	
	if(!$next.size())
		$next = $('#splasher img:first');
	
	$next.css('z-index',2).css('opacity',0);
	$current.css('z-index', 1);
	
	$next.animate({opacity: 1}, 2000, function(){
		$next.addClass('active');
		$current.removeClass('active');
	});  
	
}
