$(document).ready(function(){

	$('#topnav li.subitems ul li.last a').hover(
		function() {$(this).parent().parent().parent('div').css('background-position','right bottom');},
		function() {$(this).parent().parent().parent('div').css('background-position','left bottom');}
		);
});