
/*
	Places the shadowbox close button at the top of the popup window (normally the close button is below the window).	
	This behavior also depends on the related CSS file at ---> css/shadowbox_close_top.css.
*/

function moveCloseButtonToTop() 
{ 
	tb = document.getElementById('sb-title');
	cb = document.getElementById('sb-nav-close');

	if (tb) 
	{
		tb.appendChild(cb);
	}
}

/* Init shadowbox with the custom close button on top behavior */
Shadowbox.init({ fadeDuration: "0.1", overlayOpacity : "0.8", onOpen : moveCloseButtonToTop });

