// JavaScript Document

jQuery(document).ready(function() {
	width = 150 * jQuery("#scrollArea .scroller a").length;
	jQuery("#scrollArea .scroller").css({'width':width});
	
	jQuery("#scrollArea .scrollLeft").mouseover(function() {
		jQuery("#scrollArea .scroller").animate({
			'left' : '0'
			}, "normal", function() {
					jQuery("#scrollArea .scroller");
				});										
	});
	
	jQuery("#scrollArea .scrollRight").mouseover(function() {
		jQuery("#scrollArea .scroller").css('left','');
		jQuery("#scrollArea .scroller").animate({
			'right' : '0'
			},  "normal", function() {
					jQuery("#scrollArea .scroller");
				});												
	});	
 });
