var preload = document.createElement('img');
preload.src = '/img/tooltip.png';
$(document).ready(function() {
	$("#navbaricon div a").hover(function() {
		$(this).next("span").stop(true, true).show().animate({opacity: 0.9, top: "-83"});
		}, function() {
		$(this).next("span").animate({opacity: "hide", top: "-93"}, "fast");
	});
	$('#navbar div').hover(function() {
		$(this).toggleClass('navbarhover');
		}, function () {
		$(this).toggleClass('navbarhover');
	});
});
