var ebpImgpath = new Array();
ebpImgpath["ny"] ="/annuity/internet/en/files/ny_tcm932-231463.jpg";
ebpImgpath["nycw"] ="/annuity/internet/en/files/nycw_tcm932-231465.jpg";
ebpImgpath["nyce"] ="/annuity/internet/en/files/nyce_tcm932-231464.jpg";

$(document).ready(function() {
	$("div.mapArea map area").each(function(){
		$(this).mouseover(function(e){
			$("div.mapTextArea div#fsainternal").hide();
			var area_id = $(this).attr('id').replace('area_','');
			var imgPath = ebpImgpath[area_id];
			$('img#mapImage').attr('src',imgPath);
			$('#'+area_id).show();			
		});
		$(this).mouseout(function(e){			
			var area_id = $(this).attr('id').replace('area_','');
			$('img#mapImage').attr('src','/annuity/internet/en/files/fsa_map_tcm932-231421.jpg');
			$('#'+area_id).hide();			
			$("div.mapTextArea div#fsainternal").show();
		});
	});
	if($("#breadCrumb").length){$("#breadCrumb").insertAfter('#pageTitle img')};

});

function loadImages() {
	if(document.images) {
		var img1 = new Image();
		var img2 = new Image();
		var img3 = new Image();		
		img1.src = "/annuity/internet/en/files/ny_tcm932-231463.jpg";
		img2.src = "/annuity/internet/en/files/nycw_tcm932-231465.jpg";
		img3.src = "/annuity/internet/en/files/nyce_tcm932-231464.jpg";
	}
}
function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}
addLoadEvent(loadImages);
