	function getVideo(id, category) {
	  new Ajax.Updater('ajax_player','_scripts/video.php?play='+id+'&c='+category,{ evalScripts: 'true'});
	}
	
	function getVideoList(category, page) {
	  new Ajax.Updater('ajax_videos', '_scripts/videoList.php?p='+page+'&c='+category,{ evalScripts: 'true'});
	}
	
	function searchVideos(search) {
	  new Ajax.Updater('ajax_videos', '_scripts/videoList.php?search='+search,{ evalScripts: 'true'});
	}
	
	function getVideoListCategory(category) {
	  new Ajax.Updater('ajax_videos', '_scripts/videoList.php?c='+category,{ evalScripts: 'true'});
	}
	