$(document).ready(function(){
		/* Simplify the js scroll declaration
		   webmaster@chazzuka.com
		   http://www.chazzuka.com
		*/
		var elements = ['button','next','prev']; var num = 960;
		$(elements).each(function(i,el){
			$("a[id^='"+el+"']").click(function(){
				var iteration = ($(this).attr('id')).substr(el.length);
				 $(".widearea").animate(
					{ marginLeft: (num-(num*iteration))+"px"}, 
					{duration:800,easing:'easeInOutElastic'}
				);			
			});
		});
});