$(document).ready(function() {
$("#main").html("<img src='images/schmidt10-german-no-lines.png' width='470px' style='margin-top:5px' usemap='diagram'/><map name='diagram'><area coords='237,118,158,72,191,40,235,28,282,40,314,75,237,117' href='#' id='b' shape='poly' /><area coords='239,125,316,82,332,124,322,167,291,203,242,218,240,126' href='#' id='d' shape='poly' /><area coords='233,127,228,219,179,203,150,170,139,122,155,82,234,128' href='#' id='a' shape='poly' /></map>");

$("#b").click(function() {
	$("#beratung .description").fadeIn(200)
});
$("#d").click(function() {
	$("#datenbanken .description").fadeIn(200)
});
$("#a").click(function() {
	$("#anwendungen .description").fadeIn(200)
});

$("#beratung").hover(function() {
	$("#anwendungen .description").hide()
	$("#datenbanken .description").hide()
	$("#beratung .description").css({'display' : 'block'})
	$("#beratung .description").mouseleave(function() {
		$(this).fadeOut(500)
	})
});
$("#anwendungen").hover(function() {
	$("#beratung .description").hide()
	$("#datenbanken .description").hide()
	$("#anwendungen .description").css({'display' : 'block'})
	$("#anwendungen .description").mouseleave(function() {
		$(this).fadeOut(500)
	})
});
$("#datenbanken").hover(function() {
	$("#anwendungen .description").hide()
	$("#beratung .description").hide()
	$("#datenbanken .description").css({'display' : 'block'})
	$("#datenbanken .description").mouseleave(function() {
		$(this).fadeOut(500)
	})
});
$(".close").css({'display' : 'block'});
$(".close").click(function() {
$(this).parent().hide()
});

});