/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function () {
   

    $('#btblog').hover(function () {
        $(this).css({
            'background-image':'url(btbloghov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'http://blog.peuh.com';
    });

    $('#btaccueil').hover(function () {
        $(this).css({
            'background-image':'url(btaccuhov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'http://peuh.com';
    });

    $('#btmath').hover(function () {
        $(this).css({
            'background-image':'url(btmathhov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'math.php';
    });

    $('#bthypo').hover(function () {
        $(this).css({
            'background-image':'url(bthypohov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'http://www.levsh.com';
    });


    $('#btforum').hover(function () {
        $(this).css({
            'background-image':'url(btforumhov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'http://forum.peuh.com';
    });


    $('#btapropos').hover(function () {
        $(this).css({
            'background-image':'url(btaprophov.png)',
            'cursor': 'pointer'
        });

    },function () {
            $(this).css('background-image','');
        }
    ).click(function () {
        window.location = 'apropos.php';
    });
});