$(document).ready(function(){
	$(".thumbs a").click(function(){
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
        var largeATitile =$(this).attr("title");
        var largeAHref = $(this).attr("href");
        $("#largeImgA").find('img:first').fadeOut('slow', function(){
        $("#largeImg").attr({ src: largePath, alt: largeAlt });
        $("#largeImgA").attr({ href: largeAHref.replace('info_images','popup_images'), title: largeATitile });
        $("#largeDesc").html(largeATitile);
        });
        $("#largeImgA").find('img:first').fadeIn('slow');

		 return false;
	});

           $(".thumbs a").fadeTo("fast", .5);
           $(".thumbs a").hover(function(){
           $(this).fadeTo("slow", 1);
           },function(){
           $(this).fadeTo("slow", .7);
           });
 } );