<!--

function slideShow(){
	c=document.getElementById('container');
	limit=3;
	
	current=parseInt(c.className.replace("home", ""));
	
	if(current==limit){
	 $("#p3").fadeOut("slow");
	 $("#p1").fadeIn("slow");
	c.className="home1";	
	}else{
		
		$("#p"+current).fadeOut("slow");	 	
		current=current+1;
		 $("#p"+current).fadeIn("slow");	
		c.className="home"+current;	
	}
//	alert(c.className);
}


	$('body').supersleight();
	$(document).everyTime(10000, function(i) {
 	 slideShow();


	});

//-->