			$(function() {
				

				$('.home').click(
					function (e) {
						$('html, body').animate({scrollLeft: '0px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);
				
				$('.about').click(
					function (e) {
						$('html, body').animate({scrollLeft: '4000px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);
				
				$('.branding').click(
					function (e) {
						$('html, body').animate({scrollLeft: '8000px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);		

				$('.art').click(
					function (e) {
						$('html, body').animate({scrollLeft: '10000px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);	
				
				$('.web').click(
					function (e) {
						$('html, body').animate({scrollLeft: '12000px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);		

				$('.contact').click(
					function (e) {
						$('html, body').animate({scrollLeft: '16000px'}, {duration: 3000, easing: 'easeInOutQuint'});
					}
				);

            });// JavaScript Document
