$(document).ready(function(){
	$("#MainContent .post:first-child").addClass("first");
	$("#MainContent .post:last-child").addClass("last");
	$("#MainContent .post-wrapper:first-child").addClass("first");
	$("#MainContent .post-wrapper:last-child").addClass("last");
	$("ul li:first-child").addClass("first");
	$("ul li:last-child").addClass("last");
	$("input:image").addClass("submit fR");
	

	$("li#Gallery a").hover(
	function() {$(".gallery-navigation").show();}, 
	function() {$(".gallery-navigation").hide();});

	$("li#About a").hover(
	function() {$(".about-navigation").show();}, 
	function() {$(".about-navigation").hide();});
	
	$("a.external").attr('target','_blank');
});
