$(document).ready(function() {
	
	$("#thumbs a").click(function() {
		var largePath = $(this).attr("href");
		$("#gallery img:first").attr({ src: largePath });
		return false;
	});
	
	$('#contact_form').validate();
	
});