jQuery(function($){
	$('a img').mouseover(function(){
		$(this).stop().css({opacity:0.4}).animate({opacity:1},500);
	});
	$('form :submit').mouseover(function(){
		$(this).stop().css({opacity:0.4}).animate({opacity:1},500);
	});
    $('form :image').mouseover(function(){
		$(this).stop().css({opacity:0.4}).animate({opacity:1},500);
	});

    /*
    $('a img').hover(
        function () {
            $(this).stop().css({opacity:0.6});
        },
        function () {
            $(this).animate({opacity:1},300);
        }
    );
    $('form :submit').hover(
        function () {
            $(this).stop().css({opacity:0.6});
        },
        function () {
            $(this).animate({opacity:1},300);
        }
    );
    $('form :image').hover(
        function () {
            $(this).stop().css({opacity:0.6});
        },
        function () {
            $(this).animate({opacity:1},300);
        }
    );
    */
});

