   jQuery(function (){
    //facebook widget
	   jQuery("#fb").hover(function(){
		   jQuery("#fb").stop(true, false).animate({right:"0"},"medium");
            },function(){
            	jQuery("#fb").stop(true, false).animate({right:"-205"},"medium");
      },600);
    });

jQuery(document).ready(function(){                    
	jQuery('#menu a:not([class~=mactive])').live('mouseenter',function(){ 
		jQuery(this).children().stop(true,true).fadeIn('fast');
        }).live('mouseleave',function(){
        	jQuery(this).jQuery().stop(true,true).fadeOut('fast');
        });                                           
	$("input[type='radio'],input[type='checkbox']").custCheckBox();        
        
	jQuery("#fb").css("top", (jQuery(window).height()/2)-210+"px").css("right", "-205px");
	jQuery("#fb").hover(function(){
    		$(this).animate({right:0});
       		},function(){
       			jQuery(this).animate({right:"-205px"});
       		})
      });   
