$(document).ready( function() {
	 $('a#splash').click(function() {
		$('div#container').fadeOut(600, function() {
			$.get('php/index.php ', function(data) {
				$('#container').html(data).fadeIn(600);
				$('body').supersleight({shim: '/img/x.gif'});
			});
		});
		return false;
	});


	$('body').supersleight({shim: '/img/x.gif'});
});


function returnMenu(){
	$('#menu ul li').each(function(elm) {
		$('div a', elm).removeClass('active');
	});
}

