/* 
JAVASCRIPT BELONGING TO ALL PAGES OF THE EXTRANET
 */


function log(m){
    if(window.console){
        console.log(m);
    }
}


$(function(){
    //$('input').customInput();
    // MAIN UI TABS
    $("#onglets1 a").hover(function(){
        $(this).addClass("hover");
    },function(){
        $(this).removeClass("hover");
    });
    $("input.ui-state-default").hover(function(){

        $(this).addClass("ui-state-hover");
    },function(){
        $(this).removeClass("ui-state-hover");
    });
});

