
function detectFlash()
{
    if( navigator.mimeTypes.length > 0 )
    {
        return navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin != null;
    }
    else if( window.ActiveXObject )
    {
        try
        {
            new ActiveXObject( "ShockwaveFlash.ShockwaveFlash" );
            return true;
        }
        catch( oError )
        {
            return false;
        }
    }
    else
    {
        return false;
    }
}

$(function(){
    $("select").show();
    
    
    
    if(!detectFlash()){
    
        $("body").prepend('<div style="font-weight: bold; font-size: 12px; border: solid 2px red; background: red; width: 100%; color: white; margin:0;font-family:Arial,Helvetica,sans-serif;text-align:center;">'
            +'<p style="margin: 12px 0;font-family: sans-serif">Flash Player version 10.0.0 (<a style="color: white" href="http://www.adobe.com/go/getflash/">get Flash Player</a>) is highly recommended to visit \'CITROËN C4\'.</p>'
            +'</div>');
    } else {
        $("body").attr("scroll", "no");
        $("body, html, #flash ").attr("style", "margin: 0px!important; overflow:hidden!important; height: 100%!important;");
    }
    
});
