var max = 3;
var i = 1;
var scroll=960;
/*
 * ANIMATE THE BODY TOP
 */
function animateScroll(){
  var slideClass = ".slide";
  var slideName = "slide"+i;
  //CREATE SLIDE I HTML ELEMENT AND INSERT INTO DOM
  $('<div class="slide"><img src="'+path+'img/'+slideName+'.jpg" alt="" border="0"/></div>').appendTo('#body-top-images');
  //SCROLL TO SLIDE I
  $('#body-top').animate({
    scrollLeft: scroll
  }, 200,function(){
    //DELETE FIRST SLIDE I
    $(slideClass+':lt(1)').remove();
    $('#body-top').animate({
      scrollLeft: 0
    },0);
  });
  //LOOP
  if(i == max){
    i = 1;
  }else{
    i++;
  }
}
function showStats(){
  if(statsTotalMonitors){
    $.jGrowl.defaults.closer = false;
    msg = 'Currently Monitoring - '+statsTotalMonitors+'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Up - '+statsUpMonitors+' :: Down - '+statsDownMonitors;
    $('#center').jGrowl(msg, {
      theme: 'stats',
      sticky: true
    });
  }
}
function showLiveChat(){
  /*$.jGrowl.defaults.closer = false;
  msg = '<a onclick="window.open(\'http://support.myinnsite.com/visitor/index.php?_m=livesupport&_a=emailchat&departmentid=11\',\'livechat\',\'menubar=0,resizable=0,width=420,height=500\');return false;" href="http://support.myinnsite.com/visitor/index.php?_m=livesupport&_a=emailchat&departmentid=11"><img src="http://support.myinnsite.com/visitor/index.php?_m=livesupport&_a=emailimage&departmentid=11" border="0" alt="Live Chat" /></a>';
  $('#top-right').jGrowl(msg, {
    theme: 'live-chat',
    sticky: true
  });*/
}
function showNotification(){
  /*$.jGrowl.defaults.closer = false;
  var msg = ""+
  '<h1>Try it FREE for 30 days!</h1>'+
  '<a href="'+path+'select-plan">Activate your account now.</a>';
  $('#bottom-left').jGrowl(msg, {
    sticky: true
  });*/
}
$(document).ready(function(){
  var isIE6 = (navigator.userAgent.toLowerCase().substr(25,6)=="msie 6") ? true : false;
  if(!isIE6){
    var scrollTimeout = setInterval("animateScroll()",10000);
    //var liveChatTimeout = setTimeout("showStats()",1000);
  }
});
