jQuery(document).ready(function(){
	//Initiate the carousel slider and assign the next and previous buttons to their class
	jQuery('#slidescontainer').carousel('.prev', '.next', {speed:500});  
});

function slideNext(){	$('.next').click();		}//Go to the next slide
function slidePrev(){	$('.prev').click();		}//Go to the previous slide
