$(document).ready(
	function() {
		// Set up header button behaviors
		$("#header [id*='Button']").hover(function() {
				$(this).toggleClass('hover');
		})
		.click(function() {
			window.location = $(this).find('a').attr('href');			
		});
	}
);

function preload(arrayOfImages) {
	$(arrayOfImages).each(function(){
		$('<img/>')[0].src = this;
	});
}
