﻿// JScript File


function Next()
{
  var iCount=$('#mainDiv li').length;
  for(var i=1;i<=iCount;i++)
  {
    if($('#dealsli_'+i).is(':visible')) 
     {
       $('#prev').show();
       if(iCount==parseInt(i+1))
        {
          $('#next').hide();
        }
          $('#dealsli_'+parseInt(i+1)).show();
          $('#dealsli_'+parseInt(i)).hide();
          $('#spFirst').text(parseInt(i+1));
          break;
     }
  }
}

function Prev()
{
  var iCount=$('#mainDiv li').length;
  for(var i=1;i<=iCount;i++)
  {
    $('#next').show();
    if($('#dealsli_'+i).is(':visible')) 
     {
       if(parseInt(i-1)==1)
        {
          $('#prev').hide();
        }
          $('#dealsli_'+parseInt(i-1)).show();
          $('#dealsli_'+parseInt(i)).hide();
          $('#spFirst').text(parseInt(i-1));
          break;
     }
  }
}
