 jQuery.noConflict();
 jQuery(function($) {
	 
	 $('.shapetext').hide();
	 
	 
	 $('#shape_sanisoma').mouseenter(function() {
		$('.shapetext').not('#sanisoma').fadeOut();
		$('#sanisoma').fadeIn(); 
	 });
	 
	 $('#shape_bodysoma').mouseenter(function() {
			$('.shapetext').not('#bodysoma').fadeOut();
			$('#bodysoma').fadeIn(); 
		 });
	 
	 $('#shape_navisoma').mouseenter(function() {
			$('.shapetext').not('#navisoma').fadeOut();
			$('#navisoma').fadeIn(); 
		 });
	 
	 $('#shape_sanisound').mouseenter(function() {
			$('.shapetext').not('#sanisound').fadeOut();
			$('#sanisound').fadeIn(); 
		 });
	 
	 $('area').click(function() {
	   window.location.href=($($(this).attr('href') + ' a').attr('href'));
	   
	   
	 });
	 
 });

