﻿$(document).ready(function () {

    $("a.bouncy").mouseenter(function () {
        $(this).effect("bounce", { times: 1, distance: 8 }, 350);
    });


});

$(function () {
    $("#nav li > a").hover(function () {
        $(this).stop().animate({ paddingTop: "30px" }, 100);
    },
		function () {
		    $(this).stop().animate({ paddingTop: "10px" }, 200);
		});
});
