﻿$(document).ready(function() {
	$("#header #nav a img").hover(
	function() {
		this.src = this.src.replace("_off", "_on");
	},
	function() {
		this.src = this.src.replace("_on", "_off");
	}
	);
});

$(window).bind('load', function() {
	var preload = new Array();
	$("#header #nav a img").each(function() {
		s = this.src.replace("_off", "_on");
		preload.push(s);
	});
	var img = document.createElement('img');
	$(img).bind('load', function() {
		if (preload[0]) {
			this.src = preload.shift();
		}
	}).trigger('load');
});

