$(document).ready(function() {
  $('#newBanner .arrow').click(function() {
	  $('td.mid').css('background', 'url("./i/i_moon.jpg") no-repeat top left');
    $('#newBanner').hide();
//    $('#oldBanner').animate({"right": "+=1000px"}, "slow"});
//    $('#newBanner').hide('slow');
//	$('#newBanner').animate({"right": "+=1000px"}, "slow");
//  	  marginLeft: '-1000px',
//  	  opacity: '0.1'
//  	}).hide('slow');
    $('#oldBanner').show();
//	  });
  });
  $('#oldBanner .arrow').click(function(){
	    $('td.mid').css('background', 'url("./i/moonShit.jpg") no-repeat top left');
      $('#oldBanner').hide();
      $('#newBanner').show();
//	    $('#oldBanner').animate({
//	  	  marginLeft: '-1000px',
//	  	  opacity: '0.1'
//	  	}).hide('slow');
//	    $('#newBanner').show('slow');
	});
});
