var t, h;

$(function(){
  if($("div#home").length != 0){
    t = setTimeout('scrollMags()',100);
    h = $("div#mags").attr("scrollHeight");
  }
});

scrollMags = function(){
  $("div#mags div").each(function(){
    var top = $(this).css("top");
    top = top.replace("px","");
    top = parseFloat(top) - 1;
    if($(this).attr("offsetTop") < $(this).attr("offsetHeight") * -1){
      top += h;
    }
    $(this).css("top", top + "px");
  });
  t = setTimeout('scrollMags()',80);
};

function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
}

function pausePlayer() {
    getFlashMovie("flashContent").pausePlayer();
}
