/* Homepage animation
-------------------------------------------*/

// Show the splash window, and set the timeout to hide
$(function() {
  setTimeout(function() {
    $("#splash").delay('800').fadeOut(800);
  }, 4300);
});

$(document).ready(function() {
	// We need to delay the animation a few milliseconds
  setTimeout(function() {
    // Run the animation. This basically, just sets the current div to show
    var offset = 1;
    for(y = 1; y <= 5; y++) 
    {
      for(x = offset; x <= 25; x++)
      {      
        $('#logo_block_' + x).delay(x*50).fadeIn();
        
        offset++;    
        if(x % 5 == 0)
          break;
      }
    }
    $('.logo_text').delay(2000).show('fade', 1100);
		$('#logo_block_red').delay(2000).show('fade', 1100);
  }, 700);
});
