var Geral = {

	__construct: function() {
		_this = Geral;
		$.ifixpng('pics/pixel.gif');
		$('div.thumbs,img[@src$=.png]').ifixpng(); //png transparent no IEca
		$("input[type='text'],textarea").resetDefaultValue();
		_this.nav(); //trocar cor da borda
	},
	
	nav: function() {
		$("div#nav ul li").hover(
			function() {
				$(this).css("borderBottomColor","#fff");
			},
			function() {
				$(this).css("borderBottomColor","#803b4d");
			}
		);
	}

}

$(document).ready(function(){
	Geral.__construct();
});