function showWhatwedo(){
	show$('whatwedo');
	hide$('Whoweare'); 
	hide$('howitallstarted');
	hide$('beyondBusiness');
}

function showWhoweare(){
	show$('Whoweare');
	hide$('whatwedo'); 
	hide$('howitallstarted');
	hide$('beyondBusiness');
}

function showhowitallstarted(){
	show$('howitallstarted');
	hide$('whatwedo'); 
	hide$('Whoweare');
	hide$('beyondBusiness');
}
function showbeyondBusiness(){
	show$('beyondBusiness');
	hide$('whatwedo'); 
	hide$('Whoweare');
	hide$('howitallstarted');
}
function showFAQ(sno,el){
	var oParent = obj$('faq'+sno).offsetParent;
	var oDivs = oParent.getElementsByTagName('div')
	for (x=0;x<oDivs.length ;x++ ){
		hide$(oDivs[x]);
	}
	var oTitle = obj$('title'+sno);
	oTitle.innerHTML = '<b>'+el.innerHTML+'</b>';
	show$('faq'+sno);
}