
	function slidelink(){	
		if (whichimage==1){
			window.location="";
		} else if (whichimage==2){
			window.location="";
		} else if (whichimage==3){
			window.location="";
		} else if (whichimage==4){
			window.location="";
		} else if (whichimage==5){
			window.location="";
		} else if (whichimage==6){
			window.location="";
		} else if (whichimage==7){
			window.location="";
		} else if (whichimage==8){
			window.location="";
		} else if (whichimage==9){
			window.location="";
		} else if (whichimage==10){
			window.location="";
		} else if (whichimage==11){
			window.location="";
		} else if (whichimage==12){
			window.location="";
		} else if (whichimage==0){
			window.location="";
		}
	}
      
	var slideimages=new Array();

	function slideshowimages(){
		for (i=0;i<slideshowimages.arguments.length;i++){
			slideimages[i]=new Image();
			slideimages[i].src=slideshowimages.arguments[i];
		}
	}

	var slideshowspeed=5000;
	var temp=0;
	var whichimage=0;
	var stop=0;
	var last_image=null;

    function select_active_link(){
		for(i=0 ; i<slideimages.length ; i++){
			var wh_str="link"+parseInt(i+1);
			document.getElementById(wh_str).setAttribute("class","number_link");
		}			     
            
		var wh_str="link"+parseInt(whichimage+1);			     
		document.getElementById(wh_str).setAttribute("class","number_link_active");
	}
			
	function slideit(){
		if (!document.images){
			return;
		}

		if(temp==0 && !stop){
			select_active_link();
			document.images.slide.src=slideimages[whichimage].src;

			if (whichimage<slideimages.length-1){
				whichimage++;    		         
			} else {
				whichimage=0;
			}

			setTimeout("slideit()",slideshowspeed);
		}
	}
			
	function slideto(img_id){
		document.images.slide.src=slideimages[img_id].src;
		stop=1;
		whichimage=img_id;
		select_active_link(); 
		
		if(img_id==12){
			whichimage=0;
		} else {
			whichimage=img_id+1;
		}
	}

	var timeout = 500;
	var closetimer = 0;
	var ddmenuitem = 0;

