jQuery(document).ready(function($) {	
	$('.tag_inner').css('height','125px');
	$('.cloud-open').click(function() {
		$('.tag_inner').animate({
 			height: '100%'
		});
		$('.cloud-open').hide();
		$('.cloud-close').show();
	});
	$('.cloud-close').click(function() {
		$('.tag_inner').animate({
 			height: '125px'
		});
		$('.cloud-open').show();
		$('.cloud-close').hide();
	});
});
