jQuery(document).ready(function(){
       jQuery.fn.fadeToggle = function(speed, easing, callback) {
          return this.animate({opacity: 'toggle'}, speed, easing, callback);
       };
       
       jQuery("#tagsbutton").mouseover(function () {
         jQuery("#tagsw").show();
         jQuery("#catw").hide();
         jQuery("#arcw").hide();
   		 });  
   		 
   	   jQuery("#tagsw").mouseout(function () {
         jQuery("#tagsw").hide()
   		 }); 
   		 
       jQuery("#catbutton").mouseover(function () {
         jQuery("#catw").show();
         jQuery("#tagsw").hide();
         jQuery("#arcw").hide()
   		 });  
   		 
   	   jQuery("#catw").mouseout(function () {
         jQuery("#catw").hide()
   		 });   
   		 
       jQuery("#arcbutton").mouseover(function () {
         jQuery("#arcw").show();
         jQuery("#tagsw").hide();
         jQuery("#catw").hide()
   		 });  
   		 
   	   jQuery("#arcw").mouseout(function () {
         jQuery("#arcw").hide()
   		 });
   		 
   		jQuery("#conbutton").mouseover(function () {
         jQuery("#arcw").hide();
         jQuery("#tagsw").hide();
         jQuery("#catw").hide()
   		 });    		   
        
 });

