//*******************************************************************************************
//These Sound Design Strategies are Copyright, 2010, GameSoundDesign.com
//Unauthorized reproduction in any form, in whole or in part, is strictly prohibited.
//*******************************************************************************************
var arr= new Array();
arr.push("Add reverb");
arr.push("Add delay");
arr.push("Pitch up");
arr.push("Pitch down");
arr.push("Wikipedia has the answer");
arr.push("Radio static");
arr.push("You've made this mistake before, what did you learn from it?");
arr.push("Have you tried recording dry ice?");
arr.push("Add a high pitch door squeal");
arr.push("Keys jangling");
arr.push("Microphone movement on your pant leg");
arr.push("Remove complexity");
arr.push("Put a glass to your ear, what do you hear?");
arr.push("Drop a dynamic microphone onto the floor while in record");
arr.push("Distant train horn");
arr.push("Reverse it");
arr.push("Play it backwards");
arr.push("Leopard growl");
arr.push("Mix in light wind");
arr.push("Make it more organic");
arr.push("Make it more digital");
arr.push("Use an Ebow on a guitar string");
arr.push("Do not rely on any processing for this sound");
arr.push("Communication is a two way street");
arr.push("Use distortion to your advantage");
arr.push("Record your voice and reverse it");
arr.push("Add only one more sharp sound");
arr.push("What is the logical solution");
arr.push("Water follows the path of least resistance");
arr.push("Stop what you are doing");
arr.push("Remove one layer");
arr.push("Play a random sound from your library");
arr.push("Search for the term sound on youtube");
arr.push("What does a lightbulb filament sound like when it burns out?");
arr.push("High voltage");
arr.push("Pour soda in a glass with ice cubes in it");
arr.push("Repeat what you just did");
arr.push("Use your breathing instead");
arr.push("Add a metallic element");
arr.push("Add a dull element");
arr.push("Re mix it with your eyes closed");
arr.push("Play the sound through headphones and record the result");
arr.push("Play the sound through speakers and record the result");
arr.push("Record the first thing that comes to mind right now");
arr.push("Remove all frequencies below 500 Hz");
arr.push("Remove all frequencies above 3000 Hz");
arr.push("Remove all components that are not purely organic");
arr.push("Close your eyes and listen to the space around you");
arr.push("Forget your education");
arr.push("What would Randy Thom do");
arr.push("Do not paint with a fine brush use a roller instead");
arr.push("What is the first sound that pops into your mind right now?");
arr.push("What is the logical solution?  Do the opposite");
arr.push("Have you tried recording the sound you need with a contact microphone?");
arr.push("Use a sound that is the complete opposite");
arr.push("Silence can speak volumes");
arr.push("Fifty percent");
arr.push("Sound propagation through air");
arr.push("Remove the spaces");
arr.push("Growl");
arr.push("Select a random animal sound");
arr.push("Think of a sound that starts with the letter B");
arr.push("Randomized colours");
arr.push("Distort it");
arr.push("Place importance on the fundamentals");
arr.push("Have you ever used a Tibetan Bowl?");
arr.push("Waterphone");
arr.push("Time never retreats");
arr.push("What does the colour red sound like");
arr.push("Think of patterns");
arr.push("Full circle");
arr.push("Fine edge");
arr.push("Discordant");
arr.push("In harmony");
arr.push("Write down what you hope to accomplish");
arr.push("Forget the details");
arr.push("Ask a colleague for advice");
arr.push("Breathe in and out slowly and deeply for five minutes");
arr.push("Close your eyes and envision the solution");
arr.push("Theremin?");
arr.push("Let go of your preconceived intentions");
arr.push("Listen to your instincts");
arr.push("Sizzle");
arr.push("Louder");
arr.push("Bowed cymbals");
arr.push("First develop a solid foundation then build on it");
arr.push("Metal tubes");
arr.push("Tensioned steel");
arr.push("Try a hydrophone");
arr.push("Spring coil");
arr.push("Use an instrument");

	
	function rotate()
	{
	var num= Math.round(Math.random()*90);
	add(num);
	}

	function add(i)
	{
	var chi = document.createTextNode(arr[i]);
	var tab1 = document.getElementById("add1");
		while(tab1.hasChildNodes())
		{
		 tab1.removeChild(tab1.firstChild);
		}
	tab1.appendChild(chi);
	}