			$(document).ready(function() {
				$(".item1 a.normal").hover(function() {
					$(this).animate({
						borderBottom: "5px solid",
						height: "40px"
					},"fast","swing", function() {
						$(this).css("color","#7AC943");
					});					
				},function() {
					$(this).animate({
						borderBottom: "1px solid",
						height: "44px"
					},function() {
						$(this).css("color","#E5E5E5");
					});					
				});
				$(".item2 a.normal").hover(function() {
					$(this).animate({
						borderBottom: "5px solid",
						height: "40px"
					},"fast","swing", function() {
						$(this).css("color","#FF931E");
					});					
				},function() {
					$(this).animate({
						borderBottom: "1px solid",
						height: "44px"
					},function() {
						$(this).css("color","#E5E5E5");
					});					
				});
				$(".item3 a.normal").hover(function() {
					$(this).animate({
						borderBottom: "5px solid",
						height: "40px"
					},"fast","swing", function() {
						$(this).css("color","#FF1D25");
					});					
				},function() {
					$(this).animate({
						borderBottom: "1px solid",
						height: "44px"
					},function() {
						$(this).css("color","#E5E5E5");
					});					
				});
				$(".item4 a.normal").hover(function() {
					$(this).animate({
						borderBottom: "5px solid",
						height: "40px"
					},"fast","swing", function() {
						$(this).css("color","#FF7BAC");
					});					
				},function() {
					$(this).animate({
						borderBottom: "1px solid",
						height: "44px"
					},function() {
						$(this).css("color","#E5E5E5");
					});					
				});
				$("#flag").hover(function() {
					$(this).stop().animate({
						left: "98px"
					});
				},function() {
						$(this).stop().animate({
							left: "162px"
						});
				});
				
				$("#contact").hover(function() {
					$("#twitter").fadeIn();
					$("#twitter").getTwitter({
						userName: "squarecode",
						numTweets: 1,
						loaderText: "Loading tweet",
						slideIn: false,
						showHeading: true,
						headingText: "Latest Tweet",
						showProfileLink: false
					});
				},function() {
					$("#twitter").fadeOut();
				});
				

	


			});