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

jQuery.fn.extend({
	changeImg: function(){
		if($(this)){
			$(this).not(":only-child").each(function(){
				$(this).animate({ opacity: 1 },3000).fadeOut(function(){
					if($(this).is(":last-child")){
						$(this).removeClass("view");
						$(this).parent().children().filter(":first-child").addClass("view").fadeIn().changeImg();
					} else {
						$(this).removeClass("view").next().addClass("view").fadeIn().changeImg();
					}
				});
			});
		}
	}
});

$(document).ready(function(){
	
	$('a').click(function(){
		$(this).blur();
	});
	
	$.superbox.settings = {
		boxId: "superbox", // Id attribute of the "superbox" element
		boxClasses: "", // Class of the "superbox" element
		overlayOpacity: .9, // Background opaqueness
		boxWidth: "750", // Default width of the box
		boxHeight: "450", // Default height of the box
		loadTxt: "Carregando...", // Loading text
		closeTxt: "Fechar", // "Close" button text
		prevTxt: "&laquo; Anterior &nbsp;", // "Previous" button text
		nextTxt: "&nbsp; Pr&oacute;ximo &raquo;" // "Next" button text
	};
	
	$.superbox();
	
	$("#imghome ul li:not(.view)").hide();
	$("#imghome ul li.view").changeImg();
	
});