/*!
 * slideshow
 */


$(document).ready(function(){

	$("h2.featuretitle").append('<em></em>')

	$(".thumbs a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		var largeURL = $(this).attr("name");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		$("#largeImg").wrap("<a href=\"portfolio/" + largeURL + "\"></a>");
		
		$("h2.featuretitle em").html(" " + largeAlt); return false;
	});
	
});

