function ImgLinker(tgdiv) {

		this.targetDiv = '#'+tgdiv;
		
		this.setTargetDiv = function(tgdiv) {
			this.targetDiv = '#'+tgdiv;
		}
		
		this.getTargetDiv = function() {
			return this.targetDiv;
		}
		
		this.link = function(url) {
			$(this.targetDiv).css('display', 'block');
			$(this.targetDiv).attr('src', url);
		}
}
