function loadTrusteeDetail(lang,id) {
	
	highLightThumb(id);
	
	$('#content').css('background','#ffffff');
	$('#rightContent').css('background','#ffffff');
	$('.contentBucket2').css('background','#ffffff');
	
	//left content
	$('#leftContent').css("min-height",$('#leftContent').height());
	$('#contentBucket3 hr').css("border-bottom","#ffffff solid 1px");
	
	$('#exhibitionsList').animate({opacity:'hide'},"slow",function() {
		$('#contentBucket3 #sifrNav').text('').hide();
		$.get('../pages/functions/gettrusteegallery.php', {'lang':lang,'id':id}, function(data){
			//alert(data);
			$('#exhibitionsList').html(data).animate({opacity: 'show'},"fast",function(){
				//sIFR.replace(century, {selector: 'h3',css: ['.sIFR-root {color:#999999;font-weight:bold;}'],wmode: 'transparent'});
				prepGallery();
				$('#leftContent').css("min-height",$('#contentBucket3').height());
			});
		});
	});
	$('#content').css("min-height",$(window).height()-440);
	//right content
	
	
	$('.contentBucket2').animate({opacity:'hide'},"slow",function() {
		$('.contentBucket2 .title h3').text('');
		$.get('../pages/functions/gettrusteedetail.php', {'lang':lang,'id':id}, function(data){
			//alert(data);
			$('#rightContent').html(data).animate({opacity: 'show'},"fast",function(){
				sIFR.replace(century, {selector: 'h3',css: ['.sIFR-root {color:#999999;font-weight:bold;}'],wmode: 'transparent'});
				
				$('#rightContent').css("min-height",$('.contentBucket2').height());
			});
		});
	});
}
