//**********************
// jquery: maphilighting
//**********************
$(function() {
		$('.hilight').maphilight(
											 
				$.fn.maphilight.defaults = {
				fill: true,
				fillColor: '000000',
				fillOpacity: 0.2,
				stroke: true,
				strokeColor: '00aeff',
				strokeOpacity: 1,
				strokeWidth: 1,
				fade: true,
				alwaysOn: false
				}							 
											 
		 );
});
//**********************
// jquery: maphilighting
//**********************



//****************
// jquery: overlay
//****************
$(function() {
		$("area[rel]").overlay({
							   
				fixed: false,
				left: 0,
				top: 0,
				mask: {
						//color: "purple",
						loadSpeed: 0,
						closeSpeed: 0, //this is REQUIRED for the next overlay to work
						//opacity: 0.5
				},
				
		});
		
		// Ebene von HaH-Zentrale soll beim Laden der Seite standardmaessig dargestellt werden (s. auch entsprechende CSS-Datei)
				// select the overlay element - and "make it an overlay"
				$("#hah").overlay({
						
						fixed: false,
						left: 0,
						top: 0,
						mask: {
								loadSpeed: 0,
								closeSpeed: 0, //this is REQUIRED for the next overlay to work
						},
						
					// disable this for modal dialog-type of overlays
					closeOnClick: false,
				
					// load it immediately after the construction
					load: true
				
				});
		// Ebene von HaH-Zentrale soll beim Laden der Seite standardmaessig dargestellt werden (s. auch entsprechende CSS-Datei)

});
//****************
// jquery: overlay
//****************

				

