$.ui.indexbase.subclass("ui.portafolioindex", {
	
	_properties: {
		newLocation: null
	},

	_create: function() {
		$(".seat a").click($.proxy(this._seat_clickHandler, this));
	},

	_seat_clickHandler: function(e) {
		var href = $(e.currentTarget).attr("href");
		this.newLocation(href);
		//$(".seat img").slideUp('slow');
		$("div#branding").slideUp('fast', $.proxy(this._branding_slideUpHandler, this));
		return false;
	},

	_branding_slideUpHandler: function(e) {
		window.location = this.newLocation();
	}

});

$(function() {
	$(document).portafolioindex();
});

