geWidth=0;
	imageSum=0;
	imageReelWidth=0;
	//Set Default State of each portfolio piece
	$(document).ready(function() {

	$(".paging").show();
	$(".paging a:first").addClass("active");
		
	//Get size of images, how many there are, then determin the size of the image reel.
	imageWidth = $(".window").width();
	imageSum = $(".image_reel div").size();
	imageReelWidth = imageWidth * imageSum;
	
	//Adjust the image reel to its new size
	$(".image_reel").css({'width' : imageReelWidth});
});	
	//Paging + Slider Function
	function rotate(id){
		var triggerID = id - 0; //Get number of times to slide
		var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide
		$(".image_reel").animate({ 
			left: -image_reelPosition
		}, 450 );
		
	}
	function scrollIcons(myid){
		rotate(myid); //Trigger rotation immediately
		return false; //Prevent browser jump to link anchor

}

