$(document).ready(function() {
	$("#nav li a").hover(function () {
		$(this).animate({
			"marginTop": (5)
		},200);
	},function() {
		$(this).animate({
			"marginTop": 0
		},200)
	});
	$.ajax({
		url: "http://www.planetkodiak.com/wp-content/themes/PlanetKodiak/twitter.php",
		cache: false,
		success: function(html){
			$("#twitter-details").css({'background' : 'none'});
			$("#twitter-details").append(html);
		}
	});
});
