/**
 * Initialize the popover picture gallery
 */

$(function(){
	$.getScript(GBL_BASE_URL+'javascript/library/jquery/ui/effects.core.min.js');
	$.getScript(GBL_BASE_URL+'javascript/library/jquery/ui/effects.slide.min.js');
	$.getScript(GBL_BASE_URL+'javascript/frontend/widegallery.jquery.tools.js', function(){
		$("a.trigger").overlay({
		    // each trigger uses the same overlay with the id "gallery" 
			// This element is located in the footer just below the end of the body
		    target: '#galleryOver', 
			
		    // optional exposing effect 
		    expose: '#000000' 
			
			// let the gallery plugin do its magic! 
		}).widegallery();
	});
});

