// JavaScript Document

var browserName=navigator.appName;

function show(x)
{
 $("div.state"+x).fadeIn("slow");
}
function hide(x)
{
 $("div.state"+x).fadeOut("fast");
}


$(document).ready(function() {
/*	$('div.state1').fadeIn('slow');
	$('div.state1').fadeOut('slow');
*/
	$("div.enterleave").bind("mouseleave",function(){	  
		$("div.state1").fadeOut("slow");
		
		})

if (browserName=="Microsoft Internet Explorer")
		{
		}
 	else
		{
		$(function() {  
   		       $('#kontakt a img').mouseover(function() {  
  		           $(this).stop().animate( { opacity: 1}, "fast" );  
  		        }).mouseout(function() {  
   		          $(this).stop().animate( { opacity: 0.8}, "slow" );  
  		        });
 		      }); 
		}


});

