var showCategoryVideos = function(id) {
	if (id != '' || id != null) {
		$.get(
			'/cat_videos.php',
			{
				id: id
			},
			function(html) {
				$('#cat_'+id).prepend(html);
			}
		);
	}
}
