
		var flashvars = {
		  xmlPath: "xml/aMediaGallery.xml"
		};

		var params = {
		  movie: "aMediaGallery.swf",
		  quality: "high",
		  scale:"noscale",
		  allowfullscreen:"true"
		};

		var attributes = {id:"content"};

		swfobject.embedSWF("/aMediaGallery.swf?time=" + Date.parse(new Date()), "content", "100%", "100%", "9.0.0", "/expressInstall.swf", flashvars, params, attributes);


$(function ()
{
$("a.fancy_img").fancybox({
     overlayShow: true,
    	overlayOpacity: 0.5,
    	zoomSpeedIn: 600,
    	zoomSpeedOut:600,
        'titlePosition':'over',
        'titleShow'	: true,
        'titleFormat' : formatTitle
    });
});

function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="fancybox-title-over">' + (title && title.length ? '<b>' + title + '</b>' : '' ) + '</div>';
}
