﻿$(window).bind("load", function() {
	$("#otherpics img").mouseenter(function(e) {
		var src = $(this).attr("src");
		$("#mainpic img").attr("src", src);
	});
	$('a.lbpic').lightBox({ fixedNavigation: true });
}); 