
jQuery("#navLayer").hover(function() {


} , 
function() {
if(jQuery("#navLayer").css("display") == "block") {
    //hideLayerNav();
}
});


jQuery(".header").hover(function() {} , 
function() {
if(jQuery("#navLayer").css("display") == "block") {
    hideLayerNav(); 
}
setNavInactMotiv();
});

jQuery(".headerNavItem1").hover(function() {

if(actID != "1") {
    
    clearTimeout(t); 
    t=setTimeout('showLayerNav(1, \'left\', 215, 138)', 400);
}

} , 
function() {
clearTimeout(t);
});

jQuery(".headerNavItem2").hover(function() {

if(actID != "2") {
    
    clearTimeout(t); 
    t=setTimeout('showLayerNav(2, \'left\', 357, 138)', 400);
}

} , 
function() {
clearTimeout(t);
});

jQuery(".headerNavItem3").hover(function() {

if(actID != "3") {
    
    clearTimeout(t); 
    t=setTimeout('showLayerNav(3, \'left\', 534, 138)', 400);
}

} , 
function() {
clearTimeout(t);
});

jQuery(".headerNavItem4").hover(function() {

if(actID != "4") {

    clearTimeout(t); 
    t=setTimeout('showLayerNav(4, \'right\', 706, 138)', 400);
}

} , 
function() {
clearTimeout(t);
});


jQuery(".headerNavItem5").hover(function() {

clearTimeout(t); 
hideLayerNav();
t=setTimeout('setNavAct(5)', 400);
} , 
function() {
clearTimeout(t);
});

jQuery("#test1").hover(function() {
	jQuery("#test1").css({'z-index' : '10'}); 

	jQuery("#test1").find('img').stop() 
		.animate({
			width: '88px', 
			height: '59px'
		}, 200);
		
    jQuery("#test1").animate({
			'left' : '-5.5px'
			
		}, 200);
	} , 
	
	
	function() {
	jQuery("#test1").css({'z-index' : '1'});
    jQuery("#test1").animate({
			'left' : '0px'
			
		}, 200);
		
	jQuery("#test1").find('img').stop() 
		.animate({

			width: '77px', 
			height: '52px'
			
		}, 400);
});

