$(document).ready(function(){
    $("h2").append('<em></em>');
	$(".thumbs a").each(function(evt) {
    	$(this).click(function(){
    		var largePath = $(this).attr("href");
    		var largeAlt = $(this).attr("title");
    		$("#largeImg").attr({ src: largePath, alt: largeAlt });
    		$("h2 em").html(" (" + largeAlt + ")"); return false;
    	});	    
	    $(this).hover(
            function(evt) {
                $(this).animate({opacity : 0.25}, 150);
            },
            function(evt) {
                $(this).animate({opacity : 1}, 150);
            }
        );
	});
	
	
});
