
function switchText(id, type){

	//alert(type);
	var thisLayer = document.getElementById(id);
	
	switch(type){
	
//Sample Movie Switcher
		default:
		thisLayer.innerHTML = ''
		
		case 'web1': 
		thisLayer.innerHTML = 'Great design is the foundation of a great website. Whether building from scratch or revising an existing site, our designers will work with you to develop a look that is elegant and unique to your needs. We guarantee our sites to be standards compliant and cross-browser compatible.'
		break;
		
		case 'web2': 
		thisLayer.innerHTML = 'Let\'s face it.  A static site won\'t hold viewers\' attention for long.  You may want to add an animated introduction, navigation bar or logo to spice things up.  Eye catching animation adds to the \'wow\' factor that gets your site noticed, remembered, revisited, and passed along.'
		break;
		
		case 'web3': 
		thisLayer.innerHTML = 'If you want to integrate video or audio into your website, we can compress video files to maximize quality and minimize load time. We can format videos for Quicktime, Windows Media Player, Realplayer, and more. We can embed video and audio right into your website or make it available for download.'
		break;
		
		case 'web4': 
		thisLayer.innerHTML = 'Getting your site at the top of the rankings of popular search engines like Google and Yahoo is a high priority for business. We can organize content and optimize HTML code to ensure that your site is highly ranked by search engines.'
		break;
		
		case 'web5': 
		thisLayer.innerHTML = 'It\'s not just a good idea to make your site accessible to the vision impaired, for many organizations it\'s a legal requirement.  We ensure that your website is compliant with 508 usability standards.'
		break;
		
		case 'web6': 
		thisLayer.innerHTML = 'Is your website growing cobwebs?  Whether your site needs constant updates or just sporadic changes, our developers are here to help.  We offer hourly service as well as monthly maintenance contracts.'
		break;
		
		case 'pres1': 
		thisLayer.innerHTML = 'Powerpoint is by far the most widely accepted presentation format. We can build custom Powerpoint templates and complete presentations.'
		break;
		
		case 'pres2': 
		thisLayer.innerHTML = 'If you really want to impress your audience, you\'ll need more than the cube-spin.  We can custom build animation and integrate it with your presentation.'
		break;
		
		case 'pres3': 
		thisLayer.innerHTML = 'Not everyone can make it to your speech.  Give them the next best thing.  Our developers can set your presentation to audio narration for the whole world to see.'
		break;
		
		case 'pres4': 
		thisLayer.innerHTML = 'We can develop interactive tutorials using screen capturing software with step-by-step instructions for using software applications, web applications and more.'
		break;
		
		case 'graph1': 
		thisLayer.innerHTML = 'A strong, well crafted logo builds corporate identity and brand recognition.  Our design team will listen to your ideas and help design a logo that stands out in the minds of your audience.'
		break;
		
		case 'graph2': 
		thisLayer.innerHTML = 'Branding is all about sending a clear message to your customers.  Your logo, website, presentation and marketing materials need a consistant look.  We can work with any medium to bring harmony to your corporate brand.'
		break;
		
		case 'graph3': 
		thisLayer.innerHTML = 'Musicians are passionate about their work.  Our designers are just as passionate about creating bold and sophisticated CD designs that reflect your artistic style.'
		break;
		
		case 'graph4': 
		thisLayer.innerHTML = 'Brochures, packages, ads, or posters; our team is ready to design whatever your business needs. We can help develop a strategy that delivers your message with clarity and style.'
		break;
		

		
		}
}



