$(document).ready( function() {
	$(".items a img")
	.fadeTo(1,1)
    .hover( 
        function(){
            $(this).fadeTo(200, 0.5);
        },
        function(){
            $(this).fadeTo(500, 1);
        }
    )
	.mouseover( function() {
        var changeSrc = this.src;
        $("#target").fadeOut(
            "slow",
            function() {
                $(this).attr("src", changeSrc);
                $(this).fadeIn();
            }
        );
    });
});

$(document).ready( function() {
	$(".tham a img")
	.fadeTo(1,1)
    .hover( 
        function(){
            $(this).fadeTo(200, 0.5);
        },
        function(){
            $(this).fadeTo(500, 1);
        }
    )
	.mouseover( function() {
        var changeSrc = this.src;
        $("#target").fadeOut(
            "slow",
            function() {
                $(this).attr("src", changeSrc);
                $(this).fadeIn();
            }
        );
    });
});

$(document).ready( function() {
	$(".tham2 a ")
	.fadeTo(1,1)
    .hover( 
        function(){
            $(this).fadeTo(200, 0.5);
        },
        function(){
            $(this).fadeTo(500, 1);
        }
    )
	.mouseover( function() {
        var changeSrc = $(this).attr("href");
        $("#foods").fadeOut(
            "slow",
            function() {
                $(this).attr("src", changeSrc);
                $(this).fadeIn();
            }
        );
    });
});

