$(document).ready(function(){
	$("a.menu_item_non_persistent").hover(
		function(){$(this).animate({backgroundColor: '#FFFFFF', color: '#014a97'}, 500);}, 
		function(){$(this).animate({backgroundColor: '#014a97', color: '#FFFFFF'}, 500);}
	);
	$('div#banner').hover(function() { $(this).css({cursor: 'pointer'}); }, function() { $(this).css({cursor: 'default'}); });
	$('div#banner').click(function() { window.location = "http://syzygy2.bb-art.nl/index.php" });
	
});
