$(document).ready(function(){


$("#menue a, #footer a, #news a, .anythingSlider a, #keimzelle-logo").attr("title", "");
  
if($.browser.msie) {
$("img").attr("alt", "");
}

$("#keimzelle-logo")
.mouseover(function(){
$(this).css("background-image", "url(images/logo-werbeagentur-keimzelle-ansbach2.gif)");
})
.mouseout(function(){
$(this).css("background-image", "url(images/logo-werbeagentur-keimzelle-ansbach3.gif)");
})

$('.not_active').hover(function(){
$(this).stop().animate({paddingLeft:'25px',backgroundPosition: '10px 5px'},{queue:false,duration:200});
$('.active').stop().animate({paddingLeft:'15px', backgroundPosition: '0px 5px'},{queue:false,duration:200});
}, function() {
$(this).stop().animate({paddingLeft:'15px', backgroundPosition: '0px 5px'},{queue:false,duration:100});
$('.active').stop().animate({opacity: 1.0}, 500).animate({paddingLeft:'25px',backgroundPosition: '10px 5px'},{duration:100});
});

});