var num_home_sections=3;

//alternating content on home
function toggleContent(cur_id, target_id){
	for (i=1; i<=num_home_sections; i++){
		if (i==cur_id){
			$('#home-content-'+i).slideUp(500);
		} else if (i==target_id){
			$('#home-content-'+i).delay(750).slideDown(500);
		} else {
			$('#home-content-'+i).hide();
		}
	}
	window.location='#welcome';
}
