// "Simple Image Gallery" (in content items) Plugin for Joomla 1.5 - Version 1.2.1
// License: http://www.gnu.org/copyleft/gpl.html
// Authors: Fotis Evangelou - George Chouliaras
// Copyright (c) 2008 JoomlaWorks.gr - http://www.joomlaworks.gr
// Project page at http://www.joomlaworks.gr - Demos at http://demo.joomlaworks.gr
// ***Last update: January 6th, 2007***
// Modified by Andreas Berger - http://www.bretteleben.de
// Plugin Name changed to "Very Simple Image Gallery" - Version 1.1.2
// Lightbox removed, large image added, further modifications.
// Modifications and additions Copyright (c) 2008 Andreas Berger - andreas_berger@bretteleben.de
// License: http://www.gnu.org/copyleft/gpl.html
// Project page and Demo at http://www.bretteleben.de
// ***Last update: 2009-02-07***

//domabkürzung
function $(obj){return document.getElementById(obj);}
//bildwechsel ohne reload
function switchimg(t_gal,t_img,t_title) {
	$(t_gal).src=t_img;
	$(t_gal).alt=t_title;
	$(t_gal).title=t_title;
}
