jQuery(document).ready(function($) {
$('.mo-gbackgr').each(function(){
	if($('.right_part').length ==0){
	  $(this).wrap('<div class="mouseover-gallery"><div class="right_part" /></div>');
												}
	else $('.right_part').wrapAll('<div class="mouseover-gallery" />')
								});
$('.mouseover-gallery').each(function(){
	if($('.left_part').length == 0)
		$(this).prepend('<div class="left_part"></div>')
	else {
		leftPart = $('.left_part');
		$(this).prepend(leftPart.clone());
		leftPart.remove();
		};
	$(this).append('<div class="clear" style="clear:both;"></div>')
										});								
$(' .right_part .mo-gbackgr a').hover(
 function (){		
 	var imgPath=$(this).attr('href');
	oldWrap =$('.left_part   .wrapper');				
	var newImg = $('<img src="' + imgPath +'" class="replaced" />');
	var text=$(this).children('.wrapper').html();
	var newWrap =$ ('<div class="wrapper" style="display:inline;">' + 
					'<img src="' + imgPath +'" class="replaced" />' +
					text +
					'</div>');
	oldWrap.remove();
	newWrap.hide();
	$('.left_part').append(newWrap);    
	newWrap.fadeIn(1000);
			},
  function (){oldWrap.fadeOut(1000,function(){$(oldWrap).remove();}
						 )           																 
	;});
$(' .right_part .mo-gbackgr a:first').hover(); 	 
									});			