$(document).ready(function(){
	$("ul.photoNav a").bind("click",function(){
		var thisthis = $(this);
		$(".photo img").attr("src",thisthis.attr("href"));
		$("ul.photoNav a").removeClass("active");
		thisthis.addClass("active");
		return false;
	});
	$("ul.lineList a").each(function(){
		var thisthis = $(this);
		if(window.location.href.match(thisthis.attr("href")))
			thisthis.parent().addClass("active");
	});
});

