$(function(){
  
  // 偶数行にのみクラスを指定
  $(".newstopicBox .winnerBox table tr:even").addClass("even-row");
  //prepend span tag
  $(".movieBox dt .mov-photo a").prepend("<span><img src='/vmaj/common/img/spacer.gif' /></span>");
  
  $(".movieBox dt .mov-photo a span").hover(
		function(){ $(this).css({ backgroundPosition:"-320px 0" });},
		function(){ $(this).css({ backgroundPosition:"0 0" });}
	);
  
});