jQuery.fn.imageScroller = function(){
	var _btnNext = $("#scrollLeft");
	var _btnPrev = $("#scrollRight");
	var _imgFrame = $("#artifactScroller");
	var _width = 73;
	var _currentLeft = 0;
	var _count = 0;
	
	$("#scrollLeft").click( function() {
		if (_currentLeft <= -_width) {
			_currentLeft = Number(_currentLeft + _width); 
			$("#artifactScroller").animate( {marginLeft:_currentLeft}, 'slow')} 
		}
	);
	$("#scrollRight").click( function() {
		_count=0;
		$("#artifactScroller").find("a:visible").each(function() {_count=_count+1;});
		if (585 <= ((_count*_width)+_currentLeft)) {
			_currentLeft = Number(_currentLeft - _width); 
			$("#artifactScroller").animate( {marginLeft:_currentLeft}, 'slow')} 
		}
	);
	
	$("#displayAll").click(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
  $("#yearsServed").change(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
  $("#displayPortraits").click(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
  $("#displayCampaign").click(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
  $("#displayPaper").click(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
  $("#displayMisc").click(function() {
  	$("#artifactScroller").animate( {marginLeft:0}, 'slow');
	_currentLeft=0;
  })
};

