	
     
		function handle_tabs(id)
		{  
			setTab();
			showTab(id);
			return false;
		}
		function setTab() //hide all of them
		{
			about     = document.getElementById('about_me');
			about.style.display ='none';
			favorites = document.getElementById('my_favorites');
			favorites.style.display ='none';
			issues    = document.getElementById('making_difference');
			issues.style.display ='none';
			family    = document.getElementById('family');
			family.style.display ='none';
			friends   = document.getElementById('my_friends');
			friends.style.display ='none';
		}
		function showTab(id) //show the one which is clicked
		{
			element_id = id.replace(/show_/,'');
			ob = document.getElementById(element_id);
			ob.style.display = 'block';
		}
	

function proceed_reg() {
	new Ajax.Request(
		'/register', {
			asynchronous:true,
			evalScripts: true,
			parameters: Form.serialize('myform')
		}
	);
}
