//Menu change src
$(function(){
	$('#menu a img')
		.mouseover(function(){
			$(this).attr('src','/gfx/new/' + $(this).attr('over'));
		})
		.mouseout(function(){
			$(this).attr('src','/gfx/new/' + $(this).attr('out'));
		})
})

