
$(document).ready(function(){
    if($.cookie("offre") != 'true')
    {
        var _message_to_show = '<div style="width: 605px; height: 405px"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="400"><param name="Movie" value="/flashs/Movie1.swf"><param name="play" value="true"><param name="quality" value="high"><param name="wmode" value="transparent"><param name="loop" value="true"><param name="menu" value="false"><embed src="/flashs/Movie1.swf" width="600" height="400" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" wmode="transparent" loop="true" menu="false"></object></div>';
        //var _message_to_show = '<div style="width: 620px; height: 420 px">aaa</div>';
 
        $.fancybox(
            _message_to_show,
            {
                //'width'             : 600,
                //'height'            : 400,
                //'transitionIn'      : 'none',
                //'transitionOut'     : 'elastic',
                //'showCloseButton'   : 'true',
                'centerOnScroll'    : 'true',
                //'overlayOpacity'    : 0.5,
                //'overlayColor'      : '#000',
                //'modal'             : 'true',
                //'hideOnContentClick'             : 'true',
                //'modal'             : 'true',

                'onClosed'		: function() {
                    $.cookie("offre", "true", { path: '/', expires: 0.01 }); 
                }

            });
    }
    else
    {
       $.cookie("offre", "true", { path: '/', expires: 0.01 });
    }    
    
});

