/**
 * 
 */
function showVideo(iCategoryId, sVideoId, sAjaxUrl) {
	$('#loading').show();
	$.ajax({
		type: "POST", 
		url: sAjaxUrl, 
		dataType: 'html', 
		data: "cat=" + iCategoryId + "&video=" + sVideoId, 
		success: function(html) {
			$('#loading').hide();
			$('.ytb-video-flash-box').replaceWith(html);
		}
	}			
	);
	
	return false;
}
