// JavaScript Document


			$(function(){
			$("a img, img.fade, form #img").load(function(){
				$(this).fadeTo(100, 1.0);
			});
			$("a img, img.fade, form #img").hover(
			function(){
				$(this).fadeTo(200, 0.6);
			},
			function(){
				$(this).fadeTo(150, 1.0);
			}
			);
			});