jQuery(document).ready(function() {
    jQuery('.ro img').each(function() {
        jQuery(this).hover(function() {
            jQuery(this).stop().animate({ opacity: 0.7 }, 100);
        },
       function() {
           jQuery(this).stop().animate({ opacity: 1.0 }, 100);
       });
    });
});

function nav_title(text)
{
    jQuery("#header-content").html(text);
}
