$(function() {
	$("#photos img").fullsize().lazyload({placeholder : "grey.gif"});
});

function verifyRequired() {
  if (document.voteform["name"].value == "" || document.voteform["name"].value == "Name") {
	document.voteform["name"].focus();
	alert("");
	return false;
  }	
  if (document.voteform["spam"].value != "5") {
	document.voteform["spam"].focus();
	alert("");
	return false;
  }					
}
