/* dataset: activate ----------------------------------------------------------------------------------------- */
function ajax_news(id) {
	jQuery.ajax({
		url: "/_includes/home/inc_news.php",
	   type: "POST",
	   data: "ajax=1&id=" + id,
	   success: function(response) {
	   	response_parts = response.split("|||");
				
			var img_header = response_parts[0];
			var content = response_parts[1];
			
			/* alert(img_header); */
			/* alert($("#headerbild").height()); */
			
			$('#headerbild').html(img_header);
			$('#news').html(content);
			
			/* supersleight.run(); */
      },
      
      complete: function(){
      	
      }
	});
}

function click_thumb(main,id,file) {
	jQuery.ajax({
		url: '/_includes/' + main + '/inc_click_thumb.php',
	   type: "POST",
	   data: "ajax=1&id=" + id + "&file=" + file,
	   success: function(response) {
	   	
	   	/* alert(img_header); */
			/* alert($("#headerbild").height()); */
			
			$('#image_medium').html(response);
			
			/* supersleight.run(); */
      },
      
      complete: function(){
      	
      }
	});
}