function init()
{
	// Make project posts, tabs and blog posts on homepage clickable
	
	jQuery(".project-post, ul.tabbar li, .home-blog-post, #menu li").click(function(e) {
		window.location = jQuery(this).find("a").attr("href");
	});
}


jQuery(document).ready(init);