
// jquery rollover image 
$(function() {
    $('.rolloverimg').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});


// jump menu for select links
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}

// jquery rollover disgiunto 
$(function() {
    $('.rollalbum').hover(function() { 
        var currentImg = "img/tit_rel.png";
        $("#albumtit").attr('src', "img/" + $(this).attr('title') + ".png"); //genera percorso immagine usando il titolo 
    }, function() { // on rollout ripristina immagine
        var currentImg = "img/tit_rel.png";
        $("#albumtit").attr('src', currentImg);
    });
});
