$(function() {	
	$('#home_buckets li:eq(1)').css('width','280px');
	$('#home_buckets li:eq(2)').css('width','280px');
	$('#home_buckets li:eq(3)').addClass('last');
	$('#home_buckets li a.bucket_small_btn').each(function(){
		$(this).parent().css('position','absolute').css('bottom','7px');
	});
	$('#home_buckets li a.bucket_big_btn').each(function(){
		$(this).parent().css('position','absolute').css('bottom','7px');
	});
	$(window).load(function() {
		$("#home_buckets li").equalizeCols();		
	 });
});