// Handles button rollovers

$(function() {
  $("#menu img").hover(function() {	
	switch($(this).attr('name')){
		case 'improve':
			imgname = 'house.jpg';
			break;
		case 'increase':
			imgname = 'business.jpg';
			break;
		case 'invest':
		 	imgname = 'invest.jpg';
			break;
	}
	$("#imagefade").html('<img  style="z-index:1" src="img/main/'+imgname+'">');
	$("#imagefade").hide();
	$("#imagefade").fadeIn(500);
    
	$(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  
  }, function() {
  $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
	$("#imagefade").fadeOut(200);
  });
});