BT.ns(function() {with(BT) {
	
	
	ProductImages = {
		load: function(gallery) {
			this.gallery = gallery;
			this.imageGallery = new DynamicImageGallery();
			this.imageGallery.load(this.gallery);
			this.imageGallery.showImage("null", 0);
		}
		
	};
	
	
	
	loadNotificationForm = function(model_id) {
		new Jument.ajax({
			div: 'notification', 
			url: '/ajax/product/stock_notification', 
			options: {
				parameters: {model_id: model_id}
			}
		});


		new Effect.Appear('notification', {duration:.5});
		//$('notification').show();
	}
}});
