
/* -------- FUNCTION DEFINITIONS ----------------------*/
jQuery.preloadImages = function() {
	for(var i = 0; i<arguments.length; i++) {
		jQuery("<img>").attr("src", arguments[i]);
	}
}



/* -------- FUNCTION CALLS ----------------------*/


// When DOM is ready.

$(document).ready(function() {
	$(".currentYear").text((new Date).getFullYear() + " ");
});



// When document is fully loaded.

$(window).load(function() {
	// Preload nav images.
	$.preloadImages("images/global/nav_firm_roll.png", 
					"images/global/nav_working_roll.png",
					"images/global/nav_stories_roll.png",
					"images/global/nav_articles_roll.png",
					"images/global/nav_contact_roll.png");
});