var productGallery = new ProductGallery();



/**
 * ProductGallery
 * @extends Page
 * @constructor
 */
function ProductGallery()
{
	// Call the prototype's constructor
	Page.call(this);

	// Private
	var self			= this;

	// Public
	this.showImageGallery = showImageGallery;

	//load functions on Pageload
	self.addEventListener(Page.LOADED, showImageGallery, false);


	/**
	 * Show the image gallery state for the product
	 */
	function showImageGallery()
	{
		//fixed imagedimension set in config
		var imageDimension = "17";

		//Call constructor
		ImageGallery(imageDimension, false);
	}
}

// Inheritance
ProductGallery.prototype = new Page();
controller.setPageObject(productGallery);