jQuery(function($){
/*
$("#slides").each(function() {
		if ($(this).next().get(0).tagName == "UL" || $(this).prev().get(0).tagName == "UL") {
			$(this).addClass("pi1"); 
			if ($(this).next().get(0).tagName != "UL" || $(this).prev().get(0).tagName == "UL") {
				$(this).next().addClass("clear");
			} 
		}
		else
		{
			$(this).addClass("pi2");
			$(this).next().addClass("clear");
		}
	});
*/
});
