// JavaScript Document
function flyersInit(count){
	jQuery('#flyerArchive .items').width(count*100);
	jQuery('#flyer_left').mouseover(function(){
		scrollleft = setInterval(slideLeft, 20);
	});
	jQuery('#flyer_left').mouseout(function(){
		clearInterval(scrollleft);
	});
	jQuery('#flyer_right').mouseover(function(){
		scrollright = setInterval(slideRight, 20);
	});
	jQuery('#flyer_right').mouseout(function(){
		clearInterval(scrollright);
	});
}
function slideLeft(){
	curX = jQuery('#flyerArchive .items').css("margin-left").replace("px", "");
	newX = parseInt(curX) - 2;
	if(newX > jQuery('#flyerArchive .inner').width() - jQuery('#flyerArchive .items').width()){
		jQuery('#flyerArchive .items').css({marginLeft: newX});
	}
}
function slideRight(){
	curX = jQuery('#flyerArchive .items').css("margin-left").replace("px", "");
	newX = parseInt(curX) + 2;
	if(newX < 0){
		jQuery('#flyerArchive .items').css({marginLeft: newX});
	}
}
