/***************************
 * by Christian Gambardella
 * http://gambardella.info
 **************************/

$(document).ready(function() {
	
	$('.imagePreviewLink a').click(function() {
		// neue Werte ermitteln
		var newUrl = $(this).attr('href'); // link to image
		var newAlt = $(this).children().attr('alt'); // alt text
		
		// Bild austauschen
		$('#image').attr('src', newUrl).attr('alt', newAlt);
		
		// richtiges Preview Bild aktivieren
		$('#preview .active').removeClass('active');
		
		$(this).children().addClass('active');
		
		return false;
	});
	
});
