$(document).ready(function() {
	$('a.externo').attr('target', '_blank');

	$('#menu-principal ul').superfish();

  $(':not(div).toolTip').hover(function () {
		this.tip = this.title;

		if (this.tip == '') {
			this.tip = this.alt;
		}

		$(this).append('<div class="toolTip">'+this.tip+'</div>');

    this.title = '';
    this.width = $(this).width();

		$(this).find('div.toolTip').css({left: this.width - 22})

    $('div.toolTip').fadeIn(300);
  },

	function () {
		$('div.toolTip').fadeOut(100);

		$(this).children().remove();

		this.title = this.tip;
	});
});
