/*
filename:  noconflict_plus.js
description:  :  needed for top header image links and quick links - (homepage needs noconflict_plus) --- call no conflict
last revision: may-04-2010
dependencies:  jQuery v1.2.2 or later
*/

jQuery.noConflict();
jQuery(function(){
jQuery("ul#menu span").css("opacity","0");
jQuery("ul#menu span").hover(function(){
jQuery(this).stop().animate({opacity:1},"slow");
},function(){
jQuery(this).stop().animate({opacity:0},"slow");
});
});
jQuery(document).ready(function(){
jQuery(".btn-slide").click(function(){
jQuery("#panel").slideToggle("slow");
jQuery(this).toggleClass("active");
return false;
});
});


