function input_design()
{
    $('input.text').focus(function()
    {
        if ($(this).attr('id') == 's')
            {
                if ($(this).val() == 'Recherche')
                    $(this).val('');
            }
        else if ($(this).attr('id') == 'nl')
    {
            if ($(this).val() == 'Entrer votre email ici')
             $(this).val('');
    }
    });
    
    $('input.text').blur(function()
    {
        if ($(this).attr('id') == 's')
            {
         if ($(this).val() == '')
             $(this).val('Recherche');
            }
            else if ($(this).attr('id') == 'nl')
    {
                    if ($(this).val() == '')
             $(this).val('Entrer votre email ici');
    }
    });

}

function firstPost()
{
    $('.index .post:first').css('padding-top', '0');
    $('.index .post:first h1').css('margin-top', '25px');
}

function getImage()
{
    console.log();
}

function displayGallery()
{
    $('.galerie.detail .post .content a').lightBox();
}

$(document).ready(function()
{
    $("img").fix();
    input_design();
    firstPost();
    displayGallery();
});
