// Shadowbox players //
Shadowbox.init({
    language: 'en',
    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});



Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    skipSetup: true,
    // include the html player because we want to display some html content
    players: ["html"]
});

window.onload = function(){
if( document.cookie && !/(^|\s|;)shownDiv=true(;|$)/.test( document.cookie ))
 {
   document.cookie = 'shownDiv=true';
    // open a welcome message as soon as the window loads
    Shadowbox.open({
        content:    '<div id="welcome-msg"><iframe height="350px" width="300px" allowtransparency="true" scrolling="no" frameborder="0" src="http://pages.technohide.co.cc/Welcome.html"></iframe></div>',
        player:     "html",
        title:      "Welcome to TECHNO hide!",
        height:     360,
        width:      314
    });
}
};
