$(document).ready(function() {
	
	
$(".buttons a").click(function() {
	var button_number = $(this).attr("class").split("button_")[1];
	var slide_amount = parseInt(button_number) * -730;
	
	$(".image_strip").animate({left: ""+slide_amount+"px"});
	$(".itemDescription").toggle();
	$(".itemDescription").slideDown();
	$(".buttons a").css('backgroundColor', 'none');
	$("a.portfolioBtn").css('backgroundColor', 'none');
	$(this).css('backgroundColor', 'none');
});	


<!-- RIGHT NAV-->
		$("a.portfolioBtn").click(function() {
		$("#contact").hide();
		$("#about").hide();
		$("#package").hide();
		$("#photo").hide();
		$("#splash").hide();
		$("#portfolio").fadeIn();
		$("#web").hide();
		$(".buttons a").css('backgroundColor', 'none');
		$(this).css('backgroundColor', 'none');
		$("#portfoliostrip").animate({left: "0px"});
	});
	$("a.packageBtn").click(function() {
		$("#contact").hide();
		$("#about").hide();
		$("#portfolio").hide();
		$("#photo").hide();
		$("#splash").hide();
		$("#web").hide();
		$("#package").fadeIn();
		$(this).css('backgroundColor', 'none');
		$("#packagestrip").animate({left: "0px"});
	});
	$("a.webBtn").click(function() {
		$("#contact").hide();
		$("#portfolio").hide();
		$("#package").hide();
		$("#photo").hide();
		$("#splash").hide();
		$("#about").hide();
		$("#web").fadeIn();
		$(".buttons a").css('backgroundColor', 'none');
		$(this).css('backgroundColor', 'none');
		$("#webstrip").animate({left: "0px"});
	});
	$("a.aboutBtn").click(function() {
		$("#contact").hide();
		$("#portfolio").hide();
		$("#package").hide();
		$("#photo").hide();
		$("#splash").hide();
		$("#web").hide();
		$("#about").fadeIn();
		$(".buttons a").css('backgroundColor', 'none');
		$(this).css('backgroundColor', 'none');
	});
	$("a.contactBtn").click(function() {
		$("#about").hide();
		$("#portfolio").hide();
		$("#package").hide();
		$("#splash").hide();
		$("#web").hide();
		$(".packagebuttons .packageleft").fadeOut();
		$(".buttons .left").fadeOut();
		$("#contact").fadeIn();
		$("#photo").hide();
		$(".buttons a").css('backgroundColor', 'none');
		$(this).css('backgroundColor', 'none');
	});
	$("a.photoBtn").click(function() {
		$("#about").hide();
		$("#portfolio").hide();
		$("#package").hide();
		$("#splash").hide();
		$("#web").hide();
		$(".packagebuttons .packageleft").fadeOut();
		$(".buttons .left").fadeOut();
		$("#contact").hide();
		$("#photo").fadeIn();
		$(".buttons a").css('backgroundColor', 'none');
		$(this).css('backgroundColor', 'none');
	});
});
