function myhide(){
	document.getElementById("phone_number").innerHTML="1 (888) GO-TURTLE" ;
}

function myshow(event,txt){
	document.getElementById("phone_number").innerHTML=txt;
}
	 
which = 'wp101';
	
function change(id) {
	document.getElementById(which).className="";
	document.getElementById(id).className="active";
	which=id;
}		
	
window.addEvent('domready', function() {   
	
	// Intro Movie  
	var introMov = new Quickie('http://fasturtle.com/wp/wp-content/videos/wp101.mov', {  
	    width: 536,  
	    height: 402,  
	    container: 'quickie',  
	    attributes: {  
	    	aspect: 'scale',
	        controller: 'true',  
	        autoplay: 'false',
	        target: 'myself'
	    }  
	});  
	
	  
	/* Movie Buttons */      
	// Find all elements with the trailer class  
	$$("*[class*=trailer]").each(function(el) {  
	    // Split classes using space separator and iterate through them  
	    el.getProperty("class").split(' ').each(function(classX) {  
	        if(classX.match(/^trailer(\[.+\])$/)) {  
	            var dimensions = eval(classX.match(/^trailer(\[.+\])$/)[1]);  
	
	            el.addEvent('click', function(event) {  
	                event.stop(); // Prevent default link action  
	                var id = $(this).get('id');
					$(which).toggleClass="active";
					$(id).toggleClass="active";
					which=id;
	
	                var obj = new Quickie(this.href, {  
	                    width: dimensions[0],  
	                    height: dimensions[1],  
	                    container: 'quickie',  
	                    attributes: {  
	                    controller: 'true',  
	                    autoplay: 'true'  
	                    }  
	                });  
	            });  
	        }  
	    });  
	});  
});