$(document).ready(function(){
	var text_orginal = $('#main_texts_content').html();
	var text_selected = false;
  	$('.menuHD').mouseover(function(){
  		id = $(this).attr('id');
		id = id.substr(6,id.length);
		if(id==text_selected)return false;
		text_selected = id;
		//$('#main_texts_content').stop();
		$('#main_texts_content').fadeOut('normal',function(){
				$('#main_texts_content').html($('#divMenuHD'+id).html());
				$('#main_texts_content').fadeIn();
		});

  	});
//   	$('.menuHD').mouseout(function(){
//   		$('#main_texts_content').fadeOut('normal',function(){
// 				$('#main_texts_content').html(text_orginal);
// 				$('#main_texts_content').fadeIn();
// 		});
//
//   	});
});

