function hoverAction(){
	var def = 'http://'+location.hostname+'/images/banner_reporter_full.jpg';
	var vHover = 'http://'+location.hostname+'/images/banner_reporter_full_view.jpg';
	var pHover = 'http://'+location.hostname+'/images/banner_reporter_full_post.jpg';
	var obj = ("#reportMap area");
	$(obj).hover(
		function(){
			if($(this).hasClass("view")){
				$(this).parent().prev("img").attr({"src":vHover});
			}else{
				$(this).parent().prev("img").attr({"src":pHover});
			}
		},
		function(){
			$(this).parent().prev("img").attr({"src":def});
		}
	);

}

$(function(){
	hoverAction();
});
