function showPic(id, img) {
	var prodDescOpacity = new Fx.Style('mod_slidegallery_imgwrapper', 'opacity');
	prodDescOpacity.start(1,0).chain(function() {
		$('mod_slidegallery').addClass('preload');
		var mySendRequest = new Ajax('/modules/mod_slidegallery/mod_slidegallery_ajax.php', {
					evalScripts: true,
					postBody: 	{	'id': id,
								'img': img,
								'urlid': urlid,
								'lang': lang
							
							},
							onComplete: function() { $('mod_slidegallery').removeClass('preload'); },
							update: 'mod_slidegallery_text'
		}).request().chain(function(){
			(function(){
				prodDescOpacity.start(0,1);
			}).delay(600);
				
		});
	});
}

