/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(function() {

    window.setTimeout ( function()
    {

        $("#petrol").overlay({

            // custom top position
            top: 60,

            // some mask tweaks suitable for facebox-looking dialogs
            mask: {

                // you might also consider a "transparent" color for the mask
                color: '#000',

                // load mask a little faster
                loadSpeed: 200,

                // very transparent
                opacity: 0.6

            },

            // disable this for modal dialog-type of overlays
            //closeOnClick: false,

            // load it immediately after the construction
            load: true,
            effect: 'apple'



        })
    }, 2000 );


});


