// JavaScript Document
$(document).ready(function() {
  var nrgtiles2 = $('div[class^=proj_image]').length;
  $('body').append('<div id="nrgrotate2">&nbsp;<\/div>');
  var i=1;
  while (i<=nrgtiles2) {
    $('#nrgrotate2').append('<a href="#"><em>&nbsp;<\/em><\/a>');
  i++;
  }
  $('#nrgrotate2 a:eq(1)').addClass('active');
  $('#nrgrotate2 a:eq(0)').click(function() {
    homeFadeOut2();
    return false;
  });
  $('#nrgrotate2 a:eq(1)').click(function() {
    homeFadeIn2();
    return false;
  });
  timer2 = setTimeout(homeFadeOut2, 5000); // initial rotation
});

function homeFadeIn2() {
  clearTimeout(timer2);
  $('#nrgrotate2 a:eq(0)').removeClass('active');
  $('#nrgrotate2 a:eq(1)').addClass('active');
  $('.proj_image2').fadeIn(1000, function() {
    timer2 = setTimeout(homeFadeOut2, 8000);
  });
}

function homeFadeOut2() {
  clearTimeout(timer2);
  $('#nrgrotate2 a:eq(1)').removeClass('active');
  $('#nrgrotate2 a:eq(0)').addClass('active');
  $('.proj_image2').css('margin-top', '-216px').fadeOut(1000, function() {
    timer2 = setTimeout(homeFadeIn2, 8000);
  });
}
