 function show_container(container, content_id) {
	// document.getElementById(container).style.display = 'block';
	if ($('#' + content_id).is(':hidden')) {
		$.ajax({
			url: container,
			cache: false,
			success: function(html){
				$('#' + content_id).html(html);
			//	$("#linkcontent_container").slideDown('slow');
			//	$("#tag_line").slideUp('slow', function() {
				$('#' + content_id).show();
			//	});
			}
		});
	} else {
		$('#' + content_id).html('<div style="width:41px; margin: auto; padding-top: 135px;"><img src="http://www.artsengine.net/images/wait.gif" /></div>');
		$.ajax({
			url: container,
			cache: false,
			success: function(html){
				$('#' + content_id).fadeOut('slow', function() {
					$('#' + content_id).html(html);
					$('#' + content_id).fadeIn('slow');
				});
			}
		});
	}
}

