$(function() {
	$("img[src$=png],.iepngfix").pngfix();
  
  $("#movielist img").each(function(){
  	$(this).wrap('<span class="movie_thumb"></span>');
  })
  
  $("#movielist .movie_thumb")
  .zoom1().mouseover(function(){ 
      $("#movielist span").each(function(){
          if($(this).css('z-index') == 10){
              $(this).hide()
          }
      })
      $(this).zoom2().fadeIn("fast"); 
  })
  .zoom2().mouseout(function(){ $(this).hide(); }).click(function(){location.href=$(this).parent('a:first').attr('href');return false});
  
  var notes_icon = $('<img src="common/img/poster/icon_ln.gif">');
  var css = [
  	{position:'absolute',top:5,left:53,zIndex:19,display:'block'},
  	{position:'absolute',top:5,left:80,zIndex:19,display:'block'}
  ]
  $('.notes_icon > a').each(function(){
  	notes_icon.css(css[0]);
  	$(this).find('span:first').append(notes_icon.clone());
  	notes_icon.css(css[1]);
  	$(this).find('span:last').append(notes_icon.clone());
  });
  
  
  
});
