				 jQuery.noConflict();
				 jQuery(function($) {
	                 $(document).ready(function() {
                     
                       
                        $('ul#navigation a').hover( 
                            function() {
                                var parentClass =  $(this).parent().attr("class");
                                if (parentClass != 'selected'){                                
                                    $(this).fadeOut(0).fadeIn(500);
                                }
                            } , 
                            
                            function() {
                                $(this).show();                            
                            }                        
                        )
                        
                        
                        

					 })
				 });	 			
