function openRecipe(base, lang, preparation, ingredients, description, id){
    $.get(  base+"custom/recipe.php",
            {id: id, lang: lang,
            description: description, ingredients: ingredients, preparation: preparation,
            base: base},
            function (data){
                $('#overlay_recipe').html(data);
            }
    );

    $('#greyoverlay').show();
    $('#overlay_recipe').show();
}

$(document).ready(function(){
    $('#greyoverlay').bind('click',function(){
        $('#overlay_recipe').hide();
        $('#greyoverlay').hide();
    });
});
