	function loadVideosFromCat(cat_id,start,anzahl) {
		var cat_url = 'http://player.tneg.de/dataprovider/nrw.tv/videoclip/getVideoClipsByCategoryPerJSON.php';
		if (start == undefined) start=0;
		if (anzahl == undefined) anzahl=4;
		if (cat_id== undefined) cat_id='';
		
		jQuery.ajax({
			url: cat_url,
			data: "cat_id="+cat_id+"&start="+start+"&anzahl=" + anzahl + "&callback=?",
			dataType: "json",
			beforeSend: function(data) {
			},
			success: function(msg){
				if (msg) {	
					var content = msg;
					jQuery('#vods_content').html(content);
				}
			},
			complete: function() {
					
			}
		});
	}
	
	
	
	function loadVideosForHP() {
		var cat_url = 'http://player.tneg.de/dataprovider/nrw.tv/videoclip/getVideoClipsForHP.php';
		
		jQuery.ajax({
			url: cat_url,
			data: "callback=?",
			dataType: "json",
			beforeSend: function(data) {
			},
			success: function(msg){
				if (msg) {	
					var content = msg;
					jQuery('#vods_content').html(content);
				}
			},
			complete: function() {
					
			}
		});
	}
		
