/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-05-24 14:22:17 -0400 (Sat, 24 May 2008) $
 * $Rev: 5685 $
 */
/*** 
    Simple jQuery Slideshow Script
    Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
***/

 var PreVal=0;
  function call(strVal)
	  {		  	
	  		if(strVal!=1 && PreVal==0 )
			{
				document.getElementById(1).style.display="none";		
			}
				
			document.getElementById(strVal).style.display="";		
			if(PreVal!=strVal && PreVal !=0 )
			{		
			 document.getElementById(PreVal).style.display="none";
			 PreVal=strVal;
			}			
		PreVal=strVal;			
	   }  

