﻿
jQuery(document).ready(function(){
 jQuery(".navi").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#C8C8C6' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 500)
 });
 jQuery(".navi").animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 1);


 jQuery(".navi_rot").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#eb9e52' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 500)
 });
 jQuery(".navi_rot").animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 1);
 
 
 jQuery(".navi_gruen").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#bdd46c' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 500)
 });
 jQuery(".navi_gruen").animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 1);

 
 jQuery(".navi_blau").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#acd1e1' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 500)
 });
 jQuery(".navi_blau").animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 1);


 
 jQuery(".navi_gelb").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#f0da8e' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 500)
 });
 jQuery(".navi_blau").animate({ backgroundColor: '#EFEFEC', color: '#373733' }, 1);






 jQuery("#content_breit_fond ul li").hover(function() {
   jQuery(this).stop().animate({ backgroundColor: '#C8C8C6' }, 150)

 }, function() {
   jQuery(this).stop().animate({ backgroundColor: '#EFEFEC'}, 500)
 });
 jQuery(this).stop().animate({ backgroundColor: '#EFEFEC'}, 1);
})




function showhiddenbox(whom){
	jQuery("#box_" + whom).slideDown('fast');
	jQuery("#sb_" + whom).slideUp('fast');
}

function hideme(whom){
	jQuery("#box_" + whom).slideUp('fast');
	jQuery("#sb_" + whom).slideDown('fast');
}
