var Geral = {
	__construct: function() {
		var _this = Geral;
		
		$("input[type=file]").filestyle({ // plugin para personalizar input type 'file'
			 image: "img/bt-arquivo.gif",
			 imageheight : 24,
			 imagewidth : 68,
			 width : 227
		 });
	}
	
}

$(function() {
		Geral.__construct();			 
});