$(document).ready(function() {
	$('#right-col img').hover(
		function () {
			if ($(this).attr("src").match("-off")) {
				$(this).attr("src", $(this).attr("src").replace(/-off/, "-on"));
			}
		},
		function () {
			if ($(this).attr("src").match("-on")) {
				$(this).attr("src", $(this).attr("src").replace(/-on/, "-off"));
			}
		}
	);
});

extImg = new Array();
extImg[0] = "images/why-property-on.jpg";
extImg[1] = "images/looking-for-finance-on.jpg";
extImg[2] = "images/planning-for-retirement-on.jpg";
extImg[3] = "images/want-to-talk-to-us-talk-to-us-on.jpg";
preloadImages(extImg);
