$.Produto = function (idx, el) {

	var me = this;
	var $element = this.$element = $(el);

	this.mouseover = function() {
		$element.find('.thumb, .titulo').bind('mouseover', function() {
			$element.find('.titulo').show();
		});
	};
	
	this.mouseout = function() {
		$element.find('.thumb, .titulo').bind('mouseout', function() {
			$element.find('.titulo').hide();
		});
	};

	this.mouseover();
	this.mouseout();

};

var produto_arr = [];

(function($){
	$(function (){
		var $element = $("#main-content.produtos-fancy .foto");
		
		$element.each(function (idx, el) {
			produto_arr.push(new $.Produto(idx, el));
		});
	});
})(jQuery);