jQuery(document).ready(function() {
    jQuery("area").click(function() {
		jQuery(".mini").hide("slow");//css({'display' : 'none'});
		jQuery(".minitext").hide("slow");//css({'display' : 'none'});
        var classi = jQuery(this).attr("id");
        jQuery("div."+classi).show("slow");
    });

    jQuery("a").click(function() {
        var classi = jQuery(this).attr("class");
        jQuery("div."+classi).hide("slow");
    });
});

function doNothing() {
    //bla
}
