 












jQuery(document).ready(function() {
	//Carousel list items need to be visible otherwise we get a nasty error (alert box) 
	$("#slider-home li").show();
	
    jQuery('#mycarousel').jcarousel({
		visible: 1,
		scroll: 1,
		animation: 1000,
		buttonPrevHTML : '<div title="View previous project"></div>',
		buttonNextHTML : '<div title="View next project"></div>'
	});
});

