function changeRefImg(id){
	if($('.refimg').attr('id')!=id){		
		$('.urlref').fadeOut('fast');
		$.ajax({
			type: "POST",
			dataType:'json',
			url: "/templates/locomotive/includesOpen/loadref.php",
			data: {id: id},
			success: function(msg){
				$('.refimg').fadeOut('slow', function() {
					$('#Cright').html('<img id="'+id+'" class="refimg" src="/UserFiles/locomotive/Image/ReferenzenIcons/'+msg.r_img+'" title="'+msg.r_link+'" alt="'+msg.r_link+'" border="0">');	
				});			
				$("#slogan").html(msg.r_slogan);
				$(".bemerkungref").html(msg.r_bem);
				
				
				$('.refnaviclass').removeClass('SubNaviTopAktive');
				$('.refnaviclass').addClass('SubNaviTop');
				$('#subn'+id).removeClass('SubNaviTop');
				$('#subn'+id).addClass('SubNaviTopAktive');
				
				if(msg.r_link){
					$(".urlref").html('<a href="http://'+msg.r_link+'" target="_blank">'+msg.r_link+'</a>');
					$('.urlref').fadeIn('fast');
				}
			}
		});
	}
}
