/*
********************************
**	(c)2008 R3 WEBMOTION	  **
**	contact: info@r3.com.br	  **
********************************
*/

function changepatroc(target){
	if(target){
		$(target+" ul li.patroc_view:not(:only-child)").fadeOut(500, function(){
			if($(this).not(":last-child")){
				$(this).removeClass("patroc_view").next().addClass("patroc_view").fadeIn(500);
			}
			if($(this).is(":last-child")){
				$(this).removeClass("patroc_view");
				$(this).parent().find(":first-child").addClass("patroc_view").fadeIn(500);
			}
		});
		setTimeout("changepatroc('"+target+"')",3000);
	}
}
$(document).ready(function () {
	//$(".patroc_grp ul li:not(.patroc_view)").hide();
	//setTimeout("changepatroc('.patroc_grp')",3000);
	
	//$(".patroc_grp2 ul li:not(.patroc_view)").hide();
	//setTimeout("changepatroc('.patroc_grp2')",3000);
	
	$("#aviso").click(function(){ $(this).hide(); });
	
	$(".patroc_grp3 ul li:not(.patroc_view)").hide();
	setTimeout("changepatroc('.patroc_grp3')",3000);
});