function showpage(num)
		{	
			
			
			var divnum = num;
		
			for(i=1; i<=12;i++)
			{
				var divshow = "div" + divnum;
				var divhide = "div" + i;
				
				
				if(i == divnum)
				{
				
					document.getElementById(divshow).style.display = "block";
					window.location = "#project3";
					
				}
				else
				{
					document.getElementById(divhide).style.display = "none";
					window.location = "#project3";
				}
			
			}
			
			
			
		}
		
		
function showdiv(num)
		{	
			var numvar = num;
	
			var divnum = numvar.substr(0,1);
			var anthor = numvar.substr(1);
		
		
			for(i=1; i<=12;i++)
			{
				var divshow = "div" + divnum;
				var divhide = "div" + i;
				
				
				if(i == divnum)
				{
				
					document.getElementById(divshow).style.display = "block";
					window.location = anthor;
					
				}
				else
				{
					document.getElementById(divhide).style.display = "none";
					window.location = anthor;
				}
			
			}
			
			
			
		}