$(document).ready(function(){

$('#nav ul li a:not(.selected)').hover(function(){										   
$(this).stop().fadeTo("slow", 1.0);
},function(){
$(this).stop().fadeTo("slow", 0.7);
});
$("#nav ul li a:not(.selected)").fadeTo("slow", 0.7);



	$('.ro').hover(
            function(){
                t = $(this);
                t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_o.$2"));
            },
            function(){ 
                t = $(this);
                t.attr('src',t.attr('src').replace('_o',''));
            }
     );

});