
//** IGUALADOR DE COLUMNAS
var allocateSidebarHeight = function() {
	var contentDom = $("#content");
	var sidebarDom = $("#sidebar");
	if((contentDom.height()) > sidebarDom.height()) {
		sidebarDom.css('height', contentDom.height()+"px");
	}
	else {
		contentDom.css('height', sidebarDom.height()+"px");
	}
};


var recomendadosHover = function() {
	$('#linkroll .linkbuttons img').hover(
      function () {
        var title = $(this).attr('alt');
		$('#linkroll .linktext').text(title);
      }, 
      function () {
        $('#linkroll .linktext').html('&nbsp;');
      }
    );
};

$(document).ready(function(){
	allocateSidebarHeight();
	recomendadosHover();
});




