(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
	  //$('.pageContainer').append(cacheImage);
      cache.push(cacheImage);
    }
  }
})(jQuery)

$(document).ready(function() {
    jQuery.preLoadImages("menu_2010_active.jpg", "menu_2010_inactive.jpg", "menu_contact_active.jpg", "menu_contact_inactive.jpg", "menu_home_active.jpg", "menu_home_inactive.jpg", "menu_past_active.jpg", "menu_past_inactive.jpg", "menu_program_active.jpg", "menu_program_inactive.jpg", "menu_speakers_active.jpg", "menu_speakers_inactive.jpg");


    $("#twitter").getTwitter({
        userName: "raguard",
        numTweets: 6,
        loaderText: "Loading tweets...",
        slideIn: true,
        slideDuration: 750,
        showHeading: true,
        headingText:'<img src="twitter_logo.jpg" /><img src="twitterHr.png" />',
        showProfileLink: false,
        showTimestamp: false
    });
});