$(function() {
	    $('ul.nav a').bind('click',function(event){
	        var $anchor = $(this);

	        $('html, body').stop().animate({
	            scrollLeft: $($anchor.attr('href')).offset().left
	        }, 1800,'easeInOutExpo');

/*	        $('html, body').stop().animate({
	            scrollLeft: $($anchor.attr('href')).offset().left
	        }, 960);*/
	        event.preventDefault();
	    });
	});
	
	$(function() {
	    $('div#wrapNews a').bind('click',function(event){
	        var $anchor = $(this);

	        $('html, body').stop().animate({
	            scrollLeft: $($anchor.attr('href')).offset().left
	        }, 1800,'easeInOutExpo');

/*	        $('html, body').stop().animate({
	            scrollLeft: $($anchor.attr('href')).offset().left
	        }, 960);*/
	        event.preventDefault();
	    });
	});
