// JavaScript Document


$(document).ready( function(){    	
								 
	var speed = 800;
	var webDesign = 0;
	var gfxDesign = -1300;
	var photography = -2600;
	var contact = -3900;
	
	function scrollToElement(topPosition) {
		$('#items').animate({top:topPosition}, speed, function() {});
	};

   	$('a#webDesign,a#home').click(function(event){
		//event.preventDefault();
		scrollToElement(webDesign);
	});	

   	$('a#graphicDesign').click(function(event){
		//event.preventDefault();
		scrollToElement(gfxDesign);
	});	

   	$('a#photography').click(function(event){
		//event.preventDefault();
		scrollToElement(photography);
	});	

   	$('a#contact').click(function(event){
		//event.preventDefault();
		scrollToElement(contact);
	});	
	
	// Section Stuff
	$('#firstDown').click(function() {
		scrollToElement(gfxDesign);
	});
	$('#secondUp').click(function() {
		scrollToElement(webDesign);
	});
	$('#secondDown').click(function() {
		scrollToElement(photography);
	});
	$('#thirdUp').click(function() {
		scrollToElement(gfxDesign);
	});
	$('#thirdDown').click(function() {
		scrollToElement(contact);
	});
	$('#fourthUp').click(function() {
		scrollToElement(photography);
	});
});


