function showPrevIMG(selector) {
	$(selector).hover(function(){
			$(this).each(function(){
					$(this).parent().children('li').removeClass('show');
				});
			$(this).addClass('show');	
		});	
}

(jQuery)(function($) {
	$(document).ready(function(){
		showPrevIMG('.lhDownBlock li');
		showPrevIMG('.rhDownBlock li');
		
		$('.ajDiv ').hover(function(){
			var id = $(this).attr('id');
			$(this).each(function(){
					$('.cat_im').removeClass('show');
					$('.ajDiv').removeClass('show');
				});
			$(this).addClass('show');
			$('#'+id+'img').addClass('show');	
		});	
	});
});	
