$(document).ready(function(){
	$('.splash-advantage')
		.click(function(){
			document.location = $('a:first-child', this).attr('href');
		})
		.hover(
			function(){
//				window.status = $('a:first-child', this).attr('href');
				var a = $('a:first-child', this).get(0);
				window.status = a.protocol + '//' + a.hostname + a.pathname + a.hash;
			},
			function(){
				window.status = '';
			}
		)
		.css('cursor', 'pointer')
	;
	$('.button a')
		.hover(
			function(){
				$('a', this.parentNode).addClass('hover');
				window.status = this.protocol + '//' + this.hostname + this.pathname + this.hash;
			},
			function(){
				$('a', this.parentNode).removeClass('hover');
				window.status = '';
			}
		)
	;
});