﻿$(document).ready(function() {

    $(".btMouseOver").mouseover(function() {
        $(this).attr({ src: $(this).attr("src").replace('.gif', 'Over.gif') });
    });

    $(".btMouseOver").mouseout(function() {
    $(this).attr({ src: $(this).attr("src").replace('Over.gif', '.gif') });
    });

    $(".applyHover").click(function() {
        $(".applyHover").css("font-weight", "normal");
        $(this).css("font-weight", "bold");
    });
    
});

function scrollWin(paragraphe) {
    var divOffset = $('#divBodyCaracteristicsLeft').offset().top;
    var pOffset = $("#scroll" + paragraphe).offset().top;
    var pScroll = pOffset - divOffset;
    $("#divBodyCaracteristicsLeft").animate({ scrollTop: '+=' + pScroll + 'px' }, 1000);
}

