$(function(){
	$("#work-images-list a").click(function(event) {
		event.preventDefault();
		$("#work-image").attr("src", $(this).attr("href"));
		$("#work-images-list a").children("img").attr("src", "/images/commons/image-tn.png");
		$(this).children("img").attr("src", "/images/commons/image-tn-selected.png");
	});
	$("#img-1 a").children("img").attr("src", "/images/commons/image-tn-selected.png");
});