function loadMasterDetail(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");
	$('#contentBucket3 #sifrNav').text('').hide();
	$('#exhibitionsList').animate({opacity:'hide'},"slow",function() {
		$.get('../pages/functions/getmastergallery.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());
			});
		});
	});
	
	//right content
	$('#content').css("min-height",$(window).height()-440);
	
	$('.contentBucket2 .title h3').text('');
	$('.contentBucket2').animate({opacity:'hide'},"slow",function() {
		
		$.get('../pages/functions/getmasterdetail.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());
			});
		});
	});
}
