/**
 * Gallery Module will take a list of images and create a simple gallery where each image is thumbnailed and 
 * opened as a link within the current viewer. 
 * It would be cool if this class used a simplified verision of the Mac - ImageSlider to display images.
 */
var GalleryModule=MGModule.extend({
	initialize:function(mediaMap, urls, options)
	{
	var me=this;
	me.urls=urls;
	me.mediaMap=mediaMap;
	me.setOptions(options);
	},
	process:function(){ 
		var me=this;
		var div=new Element('div',{'class':"content"});
		me.setText(div);
		div.injectInside(me.node);
		me.fireEvent('onLoad');
	}

});

