function gotoURL(url){
	document.location = url;
}

function moveCSS(){

	$('.menuButton').click(function(event){
		
		event.preventDefault();
		
		var id = $(this).attr("id");
		var url = $(this).attr('href');
	
		$("#content").children().fadeOut(200,function () {
			gotoURL(url);
		});
	});
}
