
function showSection(Name,Name2) {var jumeirah = window.document.getElementById('jumeirah');
									var ijumeirah = window.document.getElementById('ijumeirah');
									jumeirah.style.display='none';
									ijumeirah.className='not_selected_section2';
									var marina = window.document.getElementById('marina');
									var imarina = window.document.getElementById('imarina');
									marina.style.display='none';
									imarina.className='not_selected_section2';	
									var others = window.document.getElementById('others');
									var iothers = window.document.getElementById('iothers');
									others.style.display='none';
									iothers.className='not_selected_section2';	
									if (Name!='none')
	{
		var elem = document.getElementById(Name);
		elem.style.display='';
		var ielem = document.getElementById(Name2);
		ielem.className='selected_section2';
	}
	else
	{
		ijumeirah.className='selected_section2';
	}
	return false;
}
