$(document).ready(function(){  
  $('.pagination > a').live('click', function(){
    $('#products_list').html("<img src='/images/ajax-loader.gif'>");
    $.ajax({
      type: "GET",
      url: "winner_result.php" + $(this).attr('data-querystring'),
      success: function(data){
        $('#winner_result').html(data);
        attachHoverToProductBox();
        attachLightBox();
      }
    });
    return false;
  });
  
  $('.product_box').live('click', function(){
    $(this).find('a.item_link').click();
  });

  attachHoverToProductBox();
  attachLightBox();
});

function attachHoverToProductBox(){
  $('.product_box').hover(
    function(){
      $(this).css('backgroundColor', '#eee');
    },
    function(){
      $(this).css('backgroundColor', '#fff');      
    });
}
function attachLightBox(){
  $('.iframe').fancybox({
    frameWidth: 715,
    frameHeight: 500
  });
}