function startColoristsScroll(){

$("#posters ul li").css({display:"inline"});
$("#left_arrow,#right_arrow").css({display:"inline",opacity:0});
$("#right_arrow").fadeTo(750,1);
$("#right_fade").css({display:"inline"});
animation=false;
current=1;
previous=0;
xstart = $("#posters ul").position().left;

$("#left_arrow").click(function(){
	if(!animation && current>1){
		animation=true;
		previous=current;
		current--;
		if(current==1){
			$("#left_arrow").fadeTo(750,0);
			$("#left_fade").fadeTo(1000,0);
		}
		if(current==6 && previous==7){
			$("#right_arrow").fadeTo(750,1);
			$("#right_fade").fadeTo(500,1);
		}
		var xpos=xstart-((current-1)*280);
		$("#posters ul").animate({left:xpos},1000,function(){animation=false});
	}
});

$("#right_arrow").click(function(){
	if(!animation && current<7){
		animation=true;
		previous=current;
		current++;
		if(current==7){
			$("#right_arrow").fadeTo(750,0);
			$("#right_fade").fadeTo(1000,0);
		}
		if(current==2 && previous==1){
			$("#left_arrow").fadeTo(750,1);
			$("#left_fade").css({display:"inline",opacity:0}).fadeTo(500,1);
		}
		var xpos=xstart-((current-1)*280);
		$("#posters ul").animate({left:xpos},1000,function(){animation=false});
	}
});

$("#left_arrow, #right_arrow").mouseover(function(){
	$(this).css({"background-position":"left -46px","cursor":"pointer"});
});

$("#left_arrow, #right_arrow").mouseout(function(){
	$(this).css({"background-position":"left top"});
});

}//end of the startColoristsScroll function