$(document).ready(function() {
	$(".logo").hover(function()
	{
		$(".logo").fadeIn(100).animate({top:"-=5px"},100).animate({top:"+=5px"},100).animate({top:"-=5px"},100)
		.animate({top:"+=5px"},100).animate({top:"-=5px"},100).animate({top:"+=5px"},100);
	});
	$(".who").hover(function()
	{
		$(".who").fadeIn(100).animate({top:"-=5px"},100).animate({top:"+=5px"},100).animate({top:"-=5px"},100)
		.animate({top:"+=5px"},100).animate({top:"-=5px"},100).animate({top:"+=5px"},100);
	});
	$(".what").hover(function()
	{
		$(".what").fadeIn(100).animate({top:"-=5px"},100).animate({top:"+=5px"},100).animate({top:"-=5px"},100)
		.animate({top:"+=5px"},100).animate({top:"-=5px"},100).animate({top:"+=5px"},100);
	});
	$(".done").hover(function()
	{
		$(".done").fadeIn(100).animate({top:"-=5px"},100).animate({top:"+=5px"},100).animate({top:"-=5px"},100)
		.animate({top:"+=5px"},100).animate({top:"-=5px"},100).animate({top:"+=5px"},100);
	});
	$(".contact").hover(function()
	{
		$(".contact").fadeIn(100).animate({top:"-=5px"},100).animate({top:"+=5px"},100).animate({top:"-=5px"},100)
		.animate({top:"+=5px"},100).animate({top:"-=5px"},100).animate({top:"+=5px"},100);
	});
	
			$(".package").hover(function()
			{
				$(".package").fadeIn(100).animate({left:"+=5px"},100);
			});
			$(".package").mouseout(function()
			{
				$(".package").fadeIn(100).animate({left:"-=5px"},100);
			});
});
