$(document).ready(function () {

    $('.divers th').mouseover(function () {
        var offset = $(this).position();
        $(this).children('.infos').show();
        $(this).children('.infos').css("top", (offset.top-3)+"px");
        $(this).children('.infos').css("left", (offset.left+127)+"px");
    });
	
    $('.divers th').mouseleave(function () {
        $(this).children('.infos').hide();
    });
	
    $('a.detail').click(function(event){
        event.preventDefault();
        if($(this).children('span').html() == '+'){
            $(this).parent().parent().parent().prev("tbody").slideDown(1000).prev("tbody").css("border-bottom","0");
            $(this).css('background','url(../img/if/tab-fleche-haut.png) no-repeat center center #EA6E17');
            $(this).children('span').html("-");
        }else{
            $(this).parent().parent().parent().prev("tbody").slideUp(1000, function(){
                $(this).prev("tbody").css("border-bottom","4px solid #EA6E17");
            });
            $(this).css('background','url(../img/if/tab-fleche-bas.png) no-repeat center center #EA6E17');
            $(this).children('span').html("+");
        }
        return false;
    });
    var tabOffre = $('#tab_offre');
    if(tabOffre.length > 0){
        tabOffre.fixedtableheader({
            headerrowsize: $('#tab_offre .tab_initial tr').length
            });
    }
});