function Show(val) {
//clears all links
	var i;
	document.getElementById("1").className="";
	document.getElementById("2").className="";
	document.getElementById("3").className="";
	document.getElementById("4").className="";

//ABOUT
	if(val == 1) {
	document.getElementById('content').innerHTML= "Cherrylicious Designs is owned and operated by Lisa Farinaccio. Raised in a city just outside of Toronto, Canada. Lisa grew up watching her mother and grandmother create beautiful pieces of clothing. As a small child always drawing and creating outfits it was obvious to Lisa that she wanted to become a designer. After graduating from George Brown Collage in Fashion Design, she went on to take private course work in Costume Design. She currently works in theatre. Lisa hopes that Cherrylicious Designs will bring you fun and unique One of a Kind pieces to your wardrobe!";
	document.getElementById("1").className="current"; //Sets selected link to white

//GALLERY
	}
	else if(val == 2) {
	document.getElementById('content').innerHTML = "Gallery soon to come";
	document.getElementById("2").className="current"; //Sets selected link to white

//CONTACT
	}
	else if(val == 3) {
	document.getElementById('content').innerHTML="<a href='www.facebook.com/home.php?#/group.php?gid=2404651823&ref=ts'> Facebook</a>";
	document.getElementById("3").className="current"; //Sets selected link to white

//STORE
	}
	else if(val == 4) {
	document.getElementById('content').innerHTML= "<b>The Rage</b><br>2 Kensington Avenue, <br>Toronto, ON M5T 2J7<br>Telephone : 416-599-5177<br><br><b>Trap Door</b><br>2993 Dundas Street W,<br>Toronto, ON,<br>647-827-6994";
	document.getElementById("4").className="current"; //Sets selected link to white


	}
}

