﻿$(document).ready(function() {
    /* Billboard Image Rollover*/
    $('.boxgrid.caption').hover(function() {
        $(".cover", this).stop().animate({ top: '210px', height: '170px' }, { queue: false, duration: 180 });
        $(".cover p", this).slideToggle("100");
        $("img.boxgrid-img", this).fadeTo(500, 0);
    }, function() {
        $(".cover", this).stop().animate({ top: '280px', height: '100px' }, { queue: false, duration: 180 });
        $(".cover p", this).slideToggle("100");
        $("img.boxgrid-img", this).fadeTo(500, 1);
    });

    /* Search text hover */
    var m = "Ecrivez votre recherche ici";
    $(".search-text").bind("click", function(e) {
        if ($(this).val() == m) { $(this).attr('value', ''); } 
    }).blur(function(e) {
        if ($(this).val() == '') { $(this).attr('value', m); } 
    });
});
