//######################################################\\
//####		COPYRIGHT Simple Web-Solutions GmbH		####\\		
//######################################################\\
jQuery.noConflict();
jQuery(document).ready(function(){
	megbFunction();
});

function megbFunction() {
	var firstpic = jQuery(".thumb:first").children("span").children("img").attr('src');
	jQuery(".mapBoxMap > img").attr({src: firstpic});
	
	jQuery(".thumb").click(function(){
		var newpic = jQuery(this).children("span").children("img").attr('src');
		jQuery(".mapBoxMap > img").attr({src: newpic});
	});
}


