/*!
 * navibar code for non flash navigation bar
 *
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Wed April 14  2010 -0500
 */
jQuery(document).ready(function(){
jQuery("img.a_home").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

jQuery("img.a_products").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

jQuery("img.a_racenetwork").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

jQuery("img.a_support").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

jQuery("img.a_news").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

jQuery("img.a_impressum").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "normal");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "normal");
});

});

