$(document).ready(function(){	
	$('#recent a,#projects a,#lastfm a').tooltip({ 
	    track: true, 
	    delay: 0, 
	    showURL: false, 
	    showBody: " - ", 
	    fade: 0 
	});

	//$('#recent li a,#projects a').colorbox({current:"",scrolling:false,transition:"none",	href: function(){
//		return $(this).attr('href')+" #project";
//	}});

//$().bind('cbox_open', function(){
//	$(window).scrollTop(0);
//});

$('.sparklines').sparkline('html', {height: '1.5em', width: '175px', lineColor: '#f80000', fillColor: 'rgb(230,230,230);rgba(0,0,0,0.1)', minSpotColor: false, maxSpotColor: false, spotColor: '#f80000', spotRadius: 2});	

$('.sparklines_big').sparkline('html', {height: '4em', width: '100%', lineColor: '#f80000', fillColor: 'rgb(230,230,230);rgba(0,0,0,0.1)', minSpotColor: false, maxSpotColor: false, spotColor: '#f80000', spotRadius: 2});	


function setEqualHeight(columns)
 {
 var tallestcolumn = 0;
 columns.each(
 function()
 {
 currentHeight = $(this).height();
 if(currentHeight > tallestcolumn)
 {
 tallestcolumn  = currentHeight;
 }
 }
 );
 columns.height(tallestcolumn);
 }
$(document).ready(function() {
 setEqualHeight($(".column_content"));
});

});
