dojo.provide("Z2h.Slide.Image");

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

dojo.require("Z2h.Slide");

dojo.declare(
    "Z2h.Slide.Image",
    [Z2h.Slide],
    {
	templateString: null,
	templatePath: dojo.moduleUrl("Z2h","Slide/templates/Image.html"),
	widgetsInTemplate : true,


	/**
	 * Public variables
	 */
	cssClass: '',
	link: '',
	link_title: '',
	img_src: '',
	img_alt: '',

	postCreate: function(){
	    if ( this.link == "" ){
		dojo.style(this.imageWithLink,'display','none');
		dojo.style(this.imageNoLink,'display','block');
	    }

	},

	show: function(slideshow){
	},
	hide: function(){}

    }
);
