/**
 * @author aschietinger
 */
$(document).ready(function(){
    $("#thumbnails img, #text a, #ansprechpartner dl").hover(function() {
    	if (this.id != "") {
	    	$('#images div').each(function(){
	            if (this.style.display != 'none') {
	                this.style.display = 'none';
	            };
	            
	        });
	        $('#' + this.id.substr(3)).css('display', 'block');
    	}
    });
});

