

$(document).ready(function() {
	$(function() {

        $.preload(client_images, {});

        $(".client_click").removeAttr("href");
		$('#client_feed').hide();


        $(".client_click").click(function(){
			var client_id = $(this).attr('id');


			$("#client_body").fadeOut("slow",function(){
              $(this)
				.html($("#client_feed_body_" + client_id).html())
				.fadeIn("slow");
			});

            $("#client_image").fadeOut("slow",function(){
			   $(this)
			   		.attr("src",client_images[client_id])
			   		.fadeIn("slow");


			});







        });
	});
});
