//Requires JQuery

$(document).ready(function() {
    // Add the hover function
    $("div.client_tile img, div.art_box img").hover(
        function() {$(this).fadeTo(200, 0.5);},
	function() {$(this).fadeTo(200, 1);}
    );

    $("img.social_link").hover(function() {$(this).fadeTo(200, 1);},
		               function() {$(this).fadeTo(200, 0.5);});
});

