$(document).ready(function() {
	$("#btnArchive").hover(function() {
		$(this).attr("src", "/img/btnArchiveOn.png");
	}, function() {
		$(this).attr("src", "/img/btnArchiveOff.png");
	});
	$("#btnBrokerages").hover(function() {
		$(this).attr("src", "/img/btnBrokeragesOn.png");
	}, function() {
		$(this).attr("src", "/img/btnBrokeragesOff.png");
	});
	$("#btnContact").hover(function() {
		$(this).attr("src", "/img/btnContactOn.png");
	}, function() {
		$(this).attr("src", "/img/btnContactOff.png");
	});
	$("#btnFaq").hover(function() {
		$(this).attr("src", "/img/btnFaqOn.png");
	}, function() {
		$(this).attr("src", "/img/btnFaqOff.png");
	});
	$("#btnHome").hover(function() {
		$(this).attr("src", "/img/btnHomeOn.png");
	}, function() {
		$(this).attr("src", "/img/btnHomeOff.png");
	});
	$("#btnLogin").hover(function() {
		$(this).attr("src", "/img/btnLoginOn.png");
	}, function() {
		$(this).attr("src", "/img/btnLoginOff.png");
	});
	$("#btnLogout").hover(function() {
		$(this).attr("src", "/img/btnLogoutOn.png");
	}, function() {
		$(this).attr("src", "/img/btnLogoutOff.png");
	});
	$("#btnPassword").hover(function() {
		$(this).attr("src", "/img/btnPasswordOn.png");
	}, function() {
		$(this).attr("src", "/img/btnPasswordOff.png");
	});
	$("#btnSample").hover(function() {
		$(this).attr("src", "/img/btnSampleOn.png");
	}, function() {
		$(this).attr("src", "/img/btnSampleOff.png");
	});
	$("#btnSubscribe").hover(function() {
		$(this).attr("src", "/img/btnSubscribeOn.png");
	}, function() {
		$(this).attr("src", "/img/btnSubscribeOff.png");
	});
	$("#btnTraining").hover(function() {
		$(this).attr("src", "/img/btnTrainingOn.png");
	}, function() {
		$(this).attr("src", "/img/btnTrainingOff.png");
	});
	$("#btnResearch").hover(function() {
		$(this).attr("src", "/img/btnResearchOn.png");
	}, function() {
		$(this).attr("src", "/img/btnResearchOff.png");
	});
});