function switch_content(section, arg) {
	
	$("#video_details #embed").html('<p class="very_centered"><img src="/media/loader/load_details.gif" alt="Loading..." /></p>');
	
	switch (section) {
		case 'tellafriend':
			if (parseInt(arg) != 0) {
				dat = 'message='+String(arg);
			} else {
				dat = '';
			}
			$.ajax({
				type: "GET",
				url: "/ajax/content_tellafriend.php",
				data: dat,
				success: function(response) { populate_content_area(response); }
			});
			break;
	}
}

function populate_content_area(response) {
	$("#video_details").css("height", "360px");
	$("#video_details #embed").html(response);
}

function process_tellafriend(responseText, statusText) {
	if (responseText.indexOf('has been') > 0) {
		window.setTimeout('revert_details()', 2000);
	}
}

function revert_details() {
	$("#video_details #embed").html('<p class="very_centered"><img src="/media/loader/load_details.gif" alt="Loading..." /></p>');
	$("#video_details").css("height", "auto");
	video_tab = $.cookie('video_tab');
	vid = $("#cur_video_id").val();
	show_details(video_tab, vid);
}
