//NeoVision Jquery Implementations :.... 

	//<![CDATA[
		jQuery(function( $ ){
			
			//link effects
			
			$("#menu a").mouseover(function(){
      		$(this).animate({fontSize: "16px"}, "fast" );
    		});
    
			$("#menu a").mouseout(function(){
      		$(this).animate({fontSize: "14px"}, "fast" );
    		});
			
		});
	//]]>

