$(function() {
	$('#navigation a').hover(
		function(){ $(this).css('background-image', 'url(picture/interface/'+$(this).attr('id')+'.jpg)') },
		function(){ $(this).css('background-image', 'none') }
	);
	
	$('#subNavigation a').hover(
		function(){ $(this).css('background-image', 'url(picture/interface/'+$(this).attr('id')+'.gif)') },
		function(){ $(this).css('background-image', 'none') }
	);		
});