$(function() {
	$('a#splash_content').hover(
		function() {
			$('#wrapper').css('backgroundImage', 'url("'+root+'img/other/splash-bkgd-hover.gif")');
		},
		function() {
			$('#wrapper').css('backgroundImage', 'url("'+root+'img/other/splash-bkgd.gif")');
		}
	);
});