


$(document).ready(function() { 
	
	$("a.flash").fancybox({ 
		'hideOnContentClick': false,
		'frameWidth'		: 600,
		'frameHeight'		: 350,
		'callbackOnShow'	: flash
	}); 

	
	if(typeof hs != 'undefined') {
		
	    hs.graphicsDir = BASE_URL + 'js/highslide/highslide/graphics/';
	    hs.outlineType = 'rounded-white';
	    hs.showCredits = false;
        
	}
    
    $('a.zoom').each(function() {
	this.onclick = function() {
    	     return hs.expand(this);
        };
    });

	
});


function flash() {
	
	
	
	var flash = new SWFObject(this.itemArray[0].href, "fancy_div", "600", "350", "9", "#FFFFFF"); 	
	flash.write("fancy_div");

}
