$(document).ready(function(){

    // lang bar
    $("#langSelected").toggle(function(){
        $(this).next().slideDown('fast')
    },
    function(){
         $(this).next().slideUp('fast')
    })
    
    /**
     * Splash Modal Screen
     */
    //$.cookie("modal", 'false')
    if( $('#modal_wrapper').length > 0 )
    {
        // show modal
        $('#modal_wrapper').spryModal({show : true});

        // remove modal
        $('.buttonLink_enter').click(function(e){
            e.preventDefault();
            
            // set a cookie active for 7 days
            $.cookie("modal", "true", { path: '/', expires: 7 });
            
            // remove modal
            $('#modal_wrapper').spryModal({show : false});  
            
        });
    }
    

});


