/*
// Date : 2008-07-02
*/

var LANGUAGE = 'lang';
var OPTIONS  = { path: '/', expires: 10 };

$(document).ready(function(){

    $.cookie(LANGUAGE) == "fr" ? set_language($("#fr")) : set_language($("#en"));

    $('#fr').click(function()
    {
        $.cookie(LANGUAGE, 'fr', OPTIONS);
        location.reload();
    });

    $('#en').click(function()
    {
        $.cookie(LANGUAGE, 'en', OPTIONS);
        location.reload();
    });

    //
    // Set language
    function set_language(obj_id)
    {
        obj_id.css("text-decoration", "underline");
    }
});