// JavaScript Document



 // show alternate content if swfobject fails - using this to stop text flash on page load
   function showAlternate(e) {
			if(e.success ==  false){
			
			
				if(document.all){ //IS IE 4 or 5 (or 6 beta) 
					eval("document.all.noflash.style.display = 'block'"); 
					} 
					if (document.layers) { //IS NETSCAPE 4 or below 
					document.layers.noflash.display = "block"; 
					} 
					if (document.getElementById &&!document.all) { 
					document.getElementById("noflash").style.display = "block"; 
				} 

			
			}
			
		}
		
		
		
	//slideshowpro permalinks
	function flashPutHref(href) { location.href = href; }