$j('document').ready(function(){ 
	
	$j('div#splash').click(function() {
		$url=$j(this).find('a:first').attr('href');
		document.location.href=$url;
	});

});