Shadowbox.skin.markup = "" +
'<div id="sb-container">' +
'<div id="sb-overlay"></div>' +
    '<div id="sb-wrapper">' +

        '<div id="sb-title">' +
		'<div id="sb-nav2">' +
				    '<a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a>' +
                    '</div>' +
            '<div id="sb-title-inner"></div>' +
        '</div>' +
        '<div id="sb-wrapper-inner">' +
            '<div id="sb-body">' +
                '<div id="sb-body-inner"></div>' +
				'<div id="sb-nav1">' +
				    '<a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a>' +
                    '</div>' +
					'<div id="sb-nav3">' +
                    '<a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a>' +
                '</div>' +
                '<div id="sb-loading">' +
                    '<div id="sb-loading-inner"><span>{loading}</span></div>' +
                '</div>' +
            '</div>' +
        '</div>' +
        '<div id="sb-info">' +
            '<div id="sb-info-inner">' +
                '<div id="sb-counter"></div>' +
                
            '</div>' +
        '</div>' +
    '</div>' +
'</div>';



Shadowbox.skin.options = {

    /**
* The sequence of the resizing animations. "hw" will resize height, then width. "wh" resizes
* width, then height. "sync" resizes both simultaneously.
*
* @type {String}
*/
    animSequence: "sync",

    /**
* The limit to the number of counter links that are displayed in a "skip"-style counter.
*
* @type {Number}
*/
    counterLimit: 10,

    /**
* The counter type to use. May be either "default" or "skip". A skip counter displays a
* link for each object in the gallery.
*
* @type {String}
*/
    counterType: "default",

    /**
* True to display the gallery counter.
*
* @type {Boolean}
*/
    displayCounter: true,

    /**
* True to show the navigation controls.
*
* @type {Boolean}
*/
    displayNav: true,

    /**
* The duration (in seconds) of opacity animations.
*
* @type {Number}
*/
    fadeDuration: 0.2,

    /**
* The initial height (in pixels).
*
* @type {Number}
*/
    initialHeight: 160,

    /**
* The initial width (in pixels).
*
* @type {Number}
*/
    initialWidth: 320,

    /**
* True to trigger Shadowbox.close when the overlay is clicked.
*
* @type {Boolean}
*/
    modal: false,

    /**
* The color (in hex) to use for the overlay.
*
* @type {String}
*/
    overlayColor: "#000",

    /**
* The opacity to use for the overlay.
*
* @type {Number}
*/
    overlayOpacity: 0.8,

    /**
* The duration (in seconds) to use for resizing animations.
*
* @type {Number}
*/
    resizeDuration: 0.2,

    /**
* True to show the overlay, false to hide it.
*
* @type {Boolean}
*/
    showOverlay: true,

    /**
* Names of elements that should be hidden when the overlay is enabled.
*
* @type {String}
*/
    troubleElements: ["select", "object", "embed", "canvas"]

};


