(function($) {

	$.widget("ui.portlet", {

		url:null,

		_init : function() {
			var self = this;
			var o = this.options;

			this.url=this.element.find('.Header a').attr('href');
			this.element.bind('click', function(e){
				window.location=self.url;
			});
		}
	});
})(jQuery);