$(document).ready(function() {
	$(".menu_item").show();
	$("#home").hover(function() {
		$(this).stop();
		$(this).animate({
			left: "22px"
		}, 1000);
	}, function() {
		$(this).stop();
		$(this).animate({
			left: "70px"
		}, 1000);
	});
	$("#blog").hover(function() {
		$(this).stop();
		$(this).animate({
			left: "23px"
		}, 1000);
	}, function() {
		$(this).stop();
		$(this).animate({
			left: "70px"
		}, 1000);
	});
	$("#resume").hover(function() {
		$(this).stop();
		$(this).animate({
			left: "2px"
		}, 1000);
	}, function() {
		$(this).stop();
		$(this).animate({
			left: "70px"
		}, 1000);
	});
	$("#me").hover(function() {
		$(this).stop();
		$(this).animate({
			left: "33px"
		}, 1000);
	}, function() {
		$(this).stop();
		$(this).animate({
			left: "70px"
		}, 1000);
	});
});

function preloadImages() {
	var images=new Array();
	for(i=0; i<preloadImages.arguments.length; i++) {
		images[i] = new Image();
		images[i].src = preloadImages.arguments[i];
	}
}		
