/* chase rocks */
function activateTab(tabId){
switch(tabId){
	case 'survey':
		$('#news').animate({height:'35px',marginTop:'0px'},'slow');
		$('#donate').animate({height:'35px',marginTop:'0px'},'slow');
		$('#sponsors').animate({height:'35px',marginTop:'0px'},'slow');
		$('#h2oath').animate({height:'35px',marginTop:'0px'},'slow');
	break;
	case 'news':
		$('#survey').animate({height:'35px',marginTop:'0px'},'slow');
		$('#donate').animate({height:'35px',marginTop:'0px'},'slow');
		$('#sponsors').animate({height:'35px',marginTop:'0px'},'slow');
		$('#h2oath').animate({height:'35px',marginTop:'0px'},'slow');
	break;
	case 'donate':
		$('#survey').animate({height:'35px',marginTop:'0px'},'slow');
		$('#news').animate({height:'35px',marginTop:'0px'},'slow');
		$('#sponsors').animate({height:'35px',marginTop:'0px'},'slow');
		$('#h2oath').animate({height:'35px',marginTop:'0px'},'slow');
	break;
	case 'sponsors': 
		$('#survey').animate({height:'35px',marginTop:'0px'},'slow');
		$('#news').animate({height:'35px',marginTop:'0px'},'slow');
		$('#donate').animate({height:'35px',marginTop:'0px'},'slow');
		$('#h2oath').animate({height:'35px',marginTop:'0px'},'slow');
	break;
	case 'h2oath':
		$('#survey').animate({height:'35px',marginTop:'0px'},'slow');
		$('#news').animate({height:'35px',marginTop:'0px'},'slow');
		$('#donate').animate({height:'35px',marginTop:'0px'},'slow');
		$('#sponsors').animate({height:'35px',marginTop:'0px'},'slow');
	
	break;
	default:

	break;
}
if($('#'+tabId).css('marginTop') == '-170px')	$('#'+tabId).animate({height:'35px',marginTop:'0px'},'slow');
else $('#'+tabId).animate({height:'205px',marginTop:'-170px'},'slow');
}