// JavaScript Document


function fireCoverUp(){
	$("a#COV_HOVER3").fadeTo(0, 0);
}

// Fuer Browser-Back: Highlight bleibt sonst stehen und blendet nicht aus.
$(window).unload(function(){
	$("a#COV_HOVER3").fadeTo(250, 0); 
});

	
$(document).ready(function() {
	fireCoverUp();
	
	
	// Hauptnavigation
	$("a#COV_HOVER3").hover(function() {
	  $(this).stop(true, false).fadeTo(250, 1);
	}, function() {
	  $(this).stop(true, false).fadeTo(250, 0);
	});
	
});

function ready(){
	$("#PRELOADER").fadeOut(500); 	//Zuletzt Preloader ausfaden und Galerie freigeben	
}
