function imgIn(indexImg){
	document.getElementById(indexImg).height='40';	
	document.getElementById(indexImg).width='40';	
}

function imgOut(indexImg){
	document.getElementById(indexImg).height='35';	
	document.getElementById(indexImg).width='35';	
}
function showBigImg(urlImg){
	$("#bigImg").fadeOut( 0,function(){
		$("#bigImg").attr({src : urlImg}, function(){$("#bigImg").fadeIn();});
	    $("#bigImg").load( function(){$("#bigImg").fadeIn();} );
		});
}
function showBigImgComent(coment){
	$("#showComent").hide();
	$("#showComent").html(coment);
	$("#showComent").fadeIn();
}

