$(document).ready(function() {
	$("a[rel*=facebox]").facebox(); 
	});
var $imgsrc;
$(function() {
	$(".nominee img").hover(function() {
	$imgsrc = $(this).attr("src");
    $(this).attr("src", "/cssImages/play.png");
  }, function() {
    $(this).attr("src", $imgsrc);
  });
});
