
$(document).ready(function() {
	/* VALIKKO */
	if (location.hash.substr(1) != "") {
		$("#nav-"+location.hash.substr(1)).addClass("active");
	} else {
		$("#nav-frontpage").addClass("active");
	}

	$("#nav li").click(function() {
		$("#nav li").removeClass("active");
		$(this).addClass("active");

		/*if (this.id == "nav_frontpage") {
			$("#content").animate({height: "295px"});
		} else if (this.id == "nav_portfolio") {
			$("#content").animate({height: "1415px"});
		}*/
	});
	
	$("a[href='#portfolio']").click(function() {
		$("#nav li").removeClass("active");
		$("#nav-portfolio").addClass("active");
	})

	/* NAV-SCROLL */
	$.localScroll.hash({
		target:'#content',
		axis:'xy',
		queue:true,
		hash:true,
	});

	$.localScroll({
		target:'#content',
		axis:'xy',
		queue:true,
		hash:true,
	});

	/* PORTFOLIO KUVAT */
	$("#sample-images").css('height', $("#sample-image-ninjapartio").height());
	$("#sample-list li").hover(function() {
		$("#sample-list li").removeClass("active");
		$(this).addClass("active");
		var site = this.id.split("-")[1];
		$("#sample-images").scrollTo("#sample-image-"+site, 200);
	});

	/* LIGHTBOX */

	$("a[rel='sample-image']").colorbox({
				current: "Kuva - {current}/{total}",
				previous: "Edellinen",
				next: "Seuraava",
				close: "Sulje",
				transition: "fade",
				photo: true});
				


});
