$(document).ready(function()
{
	$('#email').html('<a href="mail'+'to:hello'+'@'+'rpadesign'+'.co.uk?Subject=Website Enquiry">hello'+'@'+'rpadesign'+'.co.uk</a>'); 
}
); 

var currenttop = ''; 

function setTop(section)
{
	
	if(section==currenttop)
	{
		 $('#'+section).slideUp(); 
		 currenttop = ''; 
	}	
	else
	{
		if(currenttop!='')
			$('#'+currenttop).slideUp(300, function(){$('#'+section).slideDown(300);});
		else
			$('#'+section).slideDown(300); 


		currenttop =section;

		
	}

}