dojo.provide("Z2h.Slide");

dojo.require("dojo.fx");
dojo.require("dijit._Widget");
dojo.require("dijit._Templated");

dojo.declare("Z2h.Slide", [dijit._Widget, dijit._Templated], {
	templateString: null,
	templatePath: dojo.moduleUrl("Z2h","Slide/templates/Slide.html"),
	widgetsInTemplate : true,
	
	/**
	 * Required functions, called by Z2h.Slideshow when animation is complete
	 */
	okayToSlide: function(){
		return true;
	},
	
	show: function(slideshow){},
	
	hide: function(){
		console.log("hide");
	}
	
});
