// Assumes loaded: jquery.js, shadowbox.js

$(document).ready( init_popups);
$(document).ready( init_shadowbox);

function init_popups()
{
	// $(".info").each( function () { $(this).removeClass('css-hover').hover( show, hide); });
	$(".info").each( function () { $(this).removeClass('css-hover') });
}
function show() { $(this).children("span").show("fast"); }
function hide() {	$(this).children("span").hide("fast"); }

function init_shadowbox()
{
	var options = {
		animate: true,
		animateFade: true,
		animSequence: 'sync',
		overlayColor: '#000',
		overlayOpacity: 0.85
	};
	Shadowbox.init( options);
}