//var total = 0;
$(function(){
	$(window).load(function(){
		$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth: 15, arrowSize: 16});
		$('div#imgs ul').cycle('fade');
		/*
		for (var i = 0; i<6; i++) {
			if ($('div#recent ul li:eq('+i+')').length>0) total+=$('div#recent ul li:eq('+i+')').outerHeight({margin:true});
		}
		if ($('div#recent ul li').length<6) $('#press-archive').css('display','none');
		$('div#recent ul').height(total);
		$('div#recent ul').css('visibility','visible');
		$('#press-archive a').click(function(){
			var h = ($('div#recent ul').height()==total) ? 'auto' : total;
			$('div#recent ul').css('height',h);
			return false;
		});
		*/
	});
});