﻿
$(function() {

    $('.slider').innerfade({
        speed: 2000,
        timeout: 4000,
        type: 'sequence',
        containerheight: '236px'
    });

    $("input.text").focus(function() {
        $(this).val("");
    }).blur(function() {
        if ($(this).val() == "") {
            $(this).val($(this)[0].defaultValue);
        }
    });

    $('.menuRubriques a').tooltip({
        track: true,
        delay: 0,
        showURL: false,
        left: 100,
        top: 30,
        showBody: " ++ ",
        fade: 500
    });

    $("ul.textInfo").liScroll({ travelocity: 0.025 });

});

