var carousel = 1;
var max = 5;
$(document).ready(function(){
 $("a.carousel_prev").click(function(){

if(carousel>1) {
carousel--;
scroll('b');
} else {


}
});

$("a.carousel_next").click(function(){

if(carousel<max) {
carousel++;
scroll('f');
} else {
}
});

});
function scroll(method) {

if(method=='b') {
$('#carousel_long').animate({ 
        left: '+=930px'
      }, 1000 );
}
if(method=='f') {
$('#carousel_long').animate({ 
        left: '-=930px'
      }, 1000 );
}

}