$(document).ready(function() {
	$(".solType").mouseover(function(){
	
	$(".solutionText").hide();
	$(".solutionImage").hide();
	 var id= $(this).attr('id');
	$("#defaultText").hide();
	$("#defaultImage").hide();
	$("#"+id+"Text").show();
	$("#"+id+"Image").show();
	
	});
	});
