/**
 * @author Certico
 */
$(document).ready(
	function(){
		$('#headerpictures').innerfade({
			animationtype: 'fade',
			speed: 2000,
			timeout: 5000,
			type: 'random',
			containerheight: '180px'
		});	
});

$(window).load(function(){
		
		if($('#footercarousellist').find('li').length <= 5){
			$('#prev').remove();
			$('#next').remove();
		}	
		else {
			$('.projectitle').each(function(){
				var hh=$(this).height();
				hh = 95-hh;
				$(this).css('top',(hh/2)+'px')
			});
			$('#footercarousellist').jCarouselLite({
		        btnNext: '#next',
		        btnPrev: '#prev',
				speed: 1000,
				visible: 5,
				scroll: 5
		    });	
		}	
});



