// NAVIGATION FADER -> START

// Call jQuery in noConflict-Mode, so it doesn't conflict with other Libraries. Change the $-call to a $j-call.
var $j = jQuery.noConflict();
$j(document).ready(function() {
	$j("#navigation a img").mouseover(
		function(){
			if($j(this).is(':animated') == false){
				$j(this).fadeTo('fast', 0);
			}
		}
	);
	$j("#navigation a img").mouseout(
		function(){
			$j(this).fadeTo('fast', 1.0);
		}
	);
});

// NAVIGATION FADER -> END
