$(document).ready(function() {
	
	
	$.post("http://www.robkeplin.com/twitter/ajax_handler.php", {get_latest_tweet: 1},
		function(returnData) {
			$("#twitter_feed").fadeOut("slow", function() {
				$("#twitter_feed").html(returnData).hide().fadeIn("slow");	
			})
		}
	);
	
	
	$("#menu ul li a").hover(
		function() {
			$(this).animate({ backgroundColor: '#434b57' }, 400)
		},
		function() {
			if($(this).hasClass("selected")) {
				$(this).animate({ backgroundColor: '#333333' }, 400)
			} else {
				$(this).animate({ backgroundColor: '#383d44' }, 400)
			}	
		}
	);

	
	$("#categoriesHref").click(
		function() {
			$("#categoriesHref").animate({ backgroundColor: '#633333' }, 400)
		}
	);
	
	/*
	$("#right .leftPad ul li a").hover(
		function() {
			$(this).animate({paddingLeft: "4px"}, 200);
		},
		function() {
			$(this).animate({paddingLeft: "0px"}, 200);
		}
	);
	*/
	
	
		
});