$(function() {
    $('.menu img').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
    });
});



$(document).ready(function(){
	$('div#nav img.active').each(function(){
		$(this).attr('src', $(this).attr('name'));								  
	});
});