Cufon.replace('#menu ul > li', {hover: {color: '#2196c2;'}} );

$(function() {
    $('#partnerlogos').cycle( {timeout: 4000} );

    $('div.album_picture_large:eq(0)').show();

    $(this).delay(1000, function() {
	tmp1 = $('div.contentbox.small').length;
	tmp2 = $('div.contentbox.sidebox').length;

	if (tmp1 == 1 && tmp2 == 1) {
	    $('div.contentbox').css('height', 'auto');

	    h1 = $('div.contentbox.small').height();
	    h2 = $('div.contentbox.sidebox').height();

	    nh = Math.max(h1, h2);
	    $('div.contentbox').animate( { height: nh + 'px' } );
	}
    });
});