$(document).ready(function(){
	$('#footer ul').jcarousel({
		scroll:1,
		visible: 3,
		size: 5
	})
	$('.jcarousel-list').css('padding','19px 0px');
        $('.jcarousel-list li').css('width','314px');
	
	//alert($(car));

	/* Leere H1 ausblenden */
	$('h1').each(function() {
		if($(this).html() == '') {
			$(this).hide();		
		}
	});
})


