	 var timer = null; 
	 function openContent(trigger, divID){ 
	 	$('#stepSlide a').each( 
	 		function(){
			 	$(this).css({'background-color':'','border':'none'});		 	
			}
	 	);
	 	$('#step1Content').hide();
		$('#step2Content').hide();
		$('#step3Content').hide();
	 	
	 	$('#'+divID).fadeIn('slow');
	 	
	 	$(trigger).css({'background-color':'white','border':'1px solid #C0C0C0'});	 	
		
		if(timer != null) clearTimeout(timer);
		timer = setTimeout( 
		  function(){		
			var nextAnchor = ($(trigger).next('a').text() == '') ? $('#stepSlide a:first') : $(trigger).next('a');
			nextAnchor.click();
		  }, 10000 
		);
	 }
	 
	 $(document).ready(
	  	function(){
	  		openContent($('#firstSlide'),'step1Content');			
		}
	 )