// JavaScript Document

$(document).ready(function(){ 

//Define the animation speed for the Carousel 
var speed = 600; 
$('#bnavPrev').click(function(){ 

//As the rest of our carousel is hidden, lets move it's margin left untilit's in view

//We use the jQuery animate() function give this movement a nice smooth feel
$('#bcarousel ul').animate({marginLeft:'-809px'}, speed);
 }); 
 
	$('#bnavNext').click(function(){ 
 
//And now lets move back to the start of the Carousel 
 
 $('#bcarousel ul').animate({marginLeft:'0px'}, speed); });}); 
