var poppers = [];
var GB_ANIMATION = true;
$(function(){
  $(".tvContainer .newsReadMore").map(function(index){
    poppers[index] = $(this).attr('id');
    $(this).click(function(e){newspopup($(e.target));});
  });
  $('#masterclassList  li a').map(function(index)
  {
    poppers[index] = $(this).attr('id');
    $(this).click(function(e){mcpopup(e.target);});
  });
  $('#grmasterclassList div a').map(function(index)
  {
    poppers[index] = $(this).attr('id');
    $(this).click(function(e){grmcpopup(e.target);});
  });
  $('.uploadWarning').click(function(e){
    filmpopup(e.target);
  })
});

function newspopup(that)
{
  var prev = (jQuery.inArray($(that).attr('id'),poppers) > 0) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) - 1]) : 0;
  var next = (jQuery.inArray($(that).attr('id'),poppers) < poppers.length - 1) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) + 1]) : 0;
  GB_show($(that).parent().parent().find("h3").text(),'html',$("#fullStory-" + that.attr('id')).html(),470,600, prev, next,newspopup);
}

function mcpopup(that)
{
  var prev = (jQuery.inArray($(that).attr('id'),poppers) > 0) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) - 1]) : 0;
  var next = (jQuery.inArray($(that).attr('id'),poppers) < poppers.length - 1) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) + 1]) : 0;
  GB_show($(that).text(),'url',"/masterclass_body.php?id="+$(that).attr('id'),470,600, prev, next,mcpopup);
}

function grmcpopup(that)
{
  var prev = (jQuery.inArray($(that).attr('id'),poppers) > 0) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) - 1]) : 0;
  var next = (jQuery.inArray($(that).attr('id'),poppers) < poppers.length - 1) ? $("#" + poppers[jQuery.inArray($(that).attr('id'),poppers) + 1]) : 0;
  GB_show($(that).text(),'url',"/gr_masterclass_body.php?id="+$(that).attr('id'),470,600, prev, next,grmcpopup);
}
function filmpopup(that)
{
  GB_show("Uploading",'html',$('#uploadWarning').html(),470,600, null, null,null);
}