$(document).ready(function(){

	$("#header #logo").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});

	$("#navbar li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
	
	$(".section .post:nth-child(1) img").addClass("first-img");
	$(".section .post:nth-child(4) img").addClass("first-img");
	$(".section .post:nth-child(7) img").addClass("first-img");
	$(".section .post:nth-child(10) img").addClass("first-img");
	$(".section .post:nth-child(13) img").addClass("first-img");
	$(".section .post:nth-child(16) img").addClass("first-img");
	$(".section .post:nth-child(19) img").addClass("first-img");
	$(".section .post:nth-child(22) img").addClass("first-img");
	
	$("#aboutme #more-about").hide();
	$("#aboutme #more-about-link").click(function(){
		$(this).parent('p').find("#more-about").slideDown();
		$(this).fadeOut();
		
		return false;
	});	
	
	$("#sidebar .section li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
	
	$("#single-content p:nth-child(1)").hide();

});