
//Begin Home Page Animations
  $(document).ready(function() {
    $(this).delay(500, function() {
        $('#logo').fadeIn(1200);
    });
	
	$(this).delay(1000, function() {
        $('#nav').fadeIn(1200);
    });
	
	$(this).delay(2200, function() {
        $('#eyecandy').fadeTo(2500, 1);
    });

    $(this).delay(2200, function() {
        $('#eyecandySub').fadeTo(2500, 1);
		preloadem();
      });
  });
  //End Home Page Animations


function preloadem()
{
$(this).delay(1000, function() {
        $.preloadImages("/headers/random_1.jpg", "/headers/random_10.jpg", "/headers/random_11.jpg", "/headers/random_12.jpg", "/headers/random_13.jpg", "/headers/random_14.jpg", "/headers/random_15.jpg",
		"/headers/random_16.jpg", "/headers/random_17.jpg", "/headers/random_18.jpg", "/headers/random_20.jpg", "/headers/random_23.jpg", "/headers/random_3.jpg", "/headers/random_4.jpg", 																	"/headers/random_5.jpg", "/headers/random_6.jpg", "/headers/wp_rice1.jpg", "/headers/wp_rice2.jpg", "/headers/wp_rice3.jpg", "/headers/wp_sprouts1.jpg", "/headers/wp_sprouts2.jpg", "/headers/wp_sprouts3.jpg", "/headers/wp_sprouts4.jpg", "/headers/wp_sprouts5.jpg", "/headers/wp_sprouts6.jpg");
      });
}

jQuery.fn.delay = function(time, func) {
    this.each(function() {
        setTimeout(func, time);
    });

    return this;
};

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
