    $(document).ready(function(){
						   $("a.fade").hover(function(){
						   //$(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
						   //},function(){
						   //$(this).fadeTo("fast", 1); // This should set the opacity back to 30% on mouseout
						   var imgfade = $('> img', this); 
						   $(imgfade).fadeTo("fast", 0.6);
						   //txtfade.style.color='#000000';

						   },function(){
						   //$(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
						   //},function(){
						   //$(this).fadeTo("fast", 1); // This should set the opacity back to 30% on mouseout
						   var imgfade = $('> img', this); 
						   $(imgfade).fadeTo("fast", 1);
						   });
						   });


    $(document).ready(function(){
    					  var imgfade = $('> img', "a.fadeout"); 
						   $(imgfade).css('opacity', 0.8);
						   $("a.fadeout").hover(function(){
						   //$(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
						   //},function(){
						   //$(this).fadeTo("fast", 1); // This should set the opacity back to 30% on mouseout
						   var imgfade = $('> img', this); 
						   $(imgfade).fadeTo("medium", 1);
						   //txtfade.style.color='#000000';

						   },function(){
						   //$(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
						   //},function(){
						   //$(this).fadeTo("fast", 1); // This should set the opacity back to 30% on mouseout
						   var imgfade = $('> img', this); 
						   $(imgfade).fadeTo("medium", 0.8);
						   });
						   });

