$(document).ready(function() {
	
	$('#header .menu li a:last').css('background', 'none');
	
	$('.homeBoxInner a img').css({"opacity":0});
	
	$('.homeBoxInner a').hover(
		function () {
    		$(this).children('img').animate({"opacity":1}, 200);
  		}, 
  		function () {
    		$(this).children('img').animate({"opacity":0}, 200);
  		}
	);	
	
	$('.homeMainInnerLeft a').hover(
  		function () {
    		$('#main').css({"background-image":"url(http://settlersrun.com.au/wp/wp-content/themes/settlersrun/images/live-overlay.png)"});
  		}, 
  		function () {
    		$('#main').css({"background-image":"none"});
  		}
	);
	
	$('.homeMainInnerRight a').hover(
  		function () {
    		$('#main').css({"background-image":"url(http://settlersrun.com.au/wp/wp-content/themes/settlersrun/images/play-overlay.png)"});
  		}, 
  		function () {
    		$('#main').css({"background-image":"none"});
  		}
	);
	
	$('#footer ul li ul li').prepend('<span>&nbsp;&nbsp;/&nbsp;&nbsp;</span>');

});
