﻿    
function getBigPicture(val, id)
{
    $('div[name="minis"]').removeClass('on');
    $('#Mini_'+id).toggleClass('on');

    $('#ContNews').stop();
    var move = -(val*610);
    $('#ContNews').animate({marginLeft: move}, 400);
}

function switchOnglet(val, div, blocLeft, blocRight, x, chemin) {

    if (val == "left") {
        document.getElementById("Left_" + div).style.background = "url(/images/home/" + chemin + "/titre.jpg) no-repeat 0px 0px";
        document.getElementById("Right_" + div).style.background = "url(/images/home/" + chemin + "/titre.jpg) no-repeat -" + x + "px -30px";
        document.getElementById(blocLeft).style.display = "";
        document.getElementById(blocRight).style.display = "none";
    }
    else {
        document.getElementById("Left_" + div).style.background = "url(/images/home/" + chemin + "/titre.jpg) no-repeat -" + x + "px 0px";
        document.getElementById("Right_" + div).style.background = "url(/images/home/" + chemin + "/titre.jpg) no-repeat 0px -30px";
        document.getElementById(blocLeft).style.display = "none";
        document.getElementById(blocRight).style.display = "";
    }
}
