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

jQuery.fn.extend({
	rotatehomeimg: function(){
		var sel = this.selector;
		if(this.length > 0){
			$("ul li.viewrotate:not(:only-child)",this).fadeOut(500, function(){
				if($(this).not(":last-child")){
					$(this).removeClass("viewrotate").next().fadeIn(500).addClass("viewrotate");
				}
				if($(this).is(":last-child")){
					$(this).removeClass("viewrotate");
					$(this).parent().find(":first-child").fadeIn(500).addClass("viewrotate");
				}
			});
			setTimeout("$('"+sel+"').rotatehomeimg()",5000);
		}
	}
});

// INIT
$(document).ready(function(){
	
	$('html').removeClass('no-js');
	
	$('a').click(function(){ $(this).blur(); });
	
	/*$("#imghome ul li:first-child").addClass("viewrotate");
	
	setTimeout("$('#imghome').rotatehomeimg()",5000);*/
	
});
