$(document).ready(function(){
	$('#container').height( $(document).height() );
    $('.level-gold,.level-presenting').equalHeight();
    $('.level-silver,.level-bronze').equalHeight();
    
	$('#footer').corner( {
		tl: false,
		tr: false,
		bl: { radius: 12 },
		br: { radius: 12 }
	});

	$('#intro').corner( {
		tl: { radius: 12 },
		tr: { radius: 12 },
		bl: false,
		br: false
	});
	
	$('.schedule-time').corner( {
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: { radius: 6 },
		br: { radius: 6 }
	});
    
    $('.sponsors-preview').corner( {
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: { radius: 6 },
		br: { radius: 6 },
        autoPad: false
	});

	Cufon.replace('#navigation a', { fontFamily: 'Avenir LT Std', hover: true });
	Cufon.replace('.memphis', { fontFamily: 'Memphis LT Std' });

});
$.fn.equalHeight = function(){
    var max = 0;
    $(this).each(function(){
        max = Math.max($(this).height(),max);
    });
    $(this).height(max);
};
