$(document).ready( function() {
	var $fullSize = ($(window).height());
	var $winSizeLess = $fullSize - 160;
	var arr = { welcome:'#EF4136', web:'#488CCB', mobile:'#009444', interactive:'#F3EA13', identity:'#EE3789', contact:'#EF4136' };
	
	$('.contentArea').css('height',$winSizeLess);
	$('.nav').css('height',$fullSize);
	
	jQuery.each(arr, function(val, hue) {
		$('.' + val).bind({
			click: function() {
				$('.nav ul li a').removeClass('selected');
				$(this).addClass('selected');
				
				$('.nav a.logo').animate({ 'background-color': hue }, 1000, 'easeInOutQuart');
				
				var $anchor = $(this);
				$('html, body').stop().animate({
            		scrollTop: $($anchor.attr('href')).offset().top
		        }, 1000, 'easeInOutQuart');
				event.preventDefault();
			}
		});
	});
	
	$('.nav a.logo').bind({
		click: function() {
			$('.nav ul li a').removeClass('selected');
			$('.nav ul li a.welcome').addClass('selected');
			
			$('.nav a.logo').animate({ 'background-color': '#EF4136' }, 1000, 'easeInOutQuart');
			
			var $anchor = $(this);
			$('html, body').stop().animate({
				scrollTop: $($anchor.attr('href')).offset().top
			}, 1000, 'easeInOutQuart');
			event.preventDefault();
		}
	});
	
	$(window).resize(function(){
		$winSizeLess = ($(window).height()) - 160;
    	$('.contentArea').stop().css('height',$winSizeLess);
    });
	
	$(window).scroll(function(){
		var $curScroll = $(window).scrollTop();
	});
});
