

$(document).ready(function(){

	$('#carousel').jcarousel({
  	wrap: 'circular',
		scroll: 2,
		start: Math.floor(Math.random()*6),
		easing: 'easeOutQuart'
  });
  
	DD_roundies.addRule('header nav a', '4px');
	
	// png fix:
	//DD_roundies.addRule('.dark');
	
	// Slideshows
  $('.slideshow>li:gt(0)').hide();
	$('.slideshow').addClass('slideshow_active');

  setInterval(function(){
    $('.slideshow>li:first')
				.fadeOut('slow', function(){
					$(this).appendTo($(this).parent('ul'));
				})
       .next('li').fadeIn('slow');
		}, 
   	4000);
	
	$(window).bind('resize', function(){
		
		window.status = $(window).height()+" "+($('#wrapper').height()+72+60);
		
		if ($(window).height()>($('#wrapper:first').height()+72+60)) {
			$('#end').addClass('fixed');
		} else {
			$('#end').removeClass('fixed');
		}
		
	});
	$(window).resize();

});

