function getTeaser(kategorie,nr,pid) {
	
	
	$('#artListHiglightOut').addClass('ajaxLoad'); 
	$('#artListHiglight').fadeTo("fast", 0.01);

	

	
	var turl = 'http://www2.sylt-reisen.de/index.php?no_cache=1&id='+pid+'&tx_fstcatcontent_pi1[action]=loadHighLight&tx_fstcatcontent_pi1[kat]='+kategorie+'&tx_fstcatcontent_pi1[number]='+nr+'&type=42';

	jQuery.ajax({
  				dataType: 'jsonp',
  				jsonp: 'jsonp_callback',
  				//url: ',
  				url: turl,
 				success: function (data) {
					//alert(data.html);
					
					jQuery('#artListHiglightCount').html(data.ges);
					jQuery('#artListHiglight').html(data.html);
					jQuery("#highLightNextLink").attr('onclick', 'getTeaser('+kategorie+','+data.next+','+pid+');');
					jQuery("#highLightPrevLink").attr('onclick', 'getTeaser('+kategorie+','+data.prev+','+pid+');');
					jQuery("#highLightNextLink").attr('href', 'javascript:getTeaser('+kategorie+','+data.next+','+pid+');');
					jQuery("#highLightPrevLink").attr('href', 'javascript:getTeaser('+kategorie+','+data.prev+','+pid+');');
					//getTeaser('.$this->piVars['pid'].',0)
					$('#artListHiglightOut').removeClass('ajaxLoad'); 
					$('#artListHiglight').fadeTo("fast", 1);
			  	}
    });    				
		
      	
          
          
	
	
	
	
}



