var Geral = {

	__construct: function() {
		_this = Geral;
		$("input[type='text'],input[type='password'],textarea").resetDefaultValue();
		$("a.lightbox").lightBox();
		$.scrollTo.defaults.axis = 'xy';
		$('div#thumbs div.content').scrollTo(0);
		$('a#arrowLeft').click(_this.moveLeft);
		$('a#arrowRight').click(_this.moveRight);

	}, 
	
	atual: 6,

	moveLeft: function() {
		_this = Geral;
		atual = _this.atual;
		
		if (atual > 6) {
			_this.atual--;
			$('div.thumbs div.content').scrollTo({top:0, left:'-=108px'}, 600);
		}
	},
	
	moveRight: function() {
		_this = Geral;
		atual = _this.atual;
		var tam = $("div.thumbs div.content ul li").length;
		if ((tam > 6) && (atual != tam-1)) {
			_this.atual++;
			$('div.thumbs div.content').scrollTo({top:0, left:'+=108px'}, 600);
		} else {
			_this.atual = 6;
			$('div.thumbs div.content').scrollTo(0, 1000);
		}
	}

}

$(document).ready(function(){
	Geral.__construct();	
	

});