
$(function(){



	// Cufon dynamic font replacement
	Cufon.replace('#header h1, #header h2');
	Cufon.replace('#content h1, #content h2, #content h3');
	Cufon.replace('#nav a', { hover: true });



	// Image rotator innerfade
	$('#rotator ul').innerfade({
		animationtype: 'fade', // fade or slide
		speed: 500, // animation speed in milliseconds
		timeout: 5000, // time between animations in milliseconds
		type: 'random', // sequence, random, or random_start
		containerheight: '140px' // height of the containing element
	});


	// Preload hover images
	preloadImages('images/by-logo-hover.png');


});



function preloadImages() {

	for (var i=0; i<arguments.length; i++) {

		$('<img>').attr('src', arguments[i]);

	}

}
