jQuery.noConflict();

jQuery(document).ready(function(){
								
/*---показываем/скрываем дополнительный текст в контенте ---*/
jQuery("span.textArrowRight").mousedown(
function()
{
	jQuery(this).next().show(200);
	jQuery(this).css("display","none");
	return true;
});

jQuery("span.textArrowLeft").mousedown(
function()
{
	jQuery(this).parent().prev().css("display","inline");
	jQuery(this).parent().hide(200);
	return true;
});
								});