$(document).ready(function() {

    $(document).pngFix();

    $("li.switch1").hover(function() {
        $("#switcher #pill").stop(true, true);
        $("#switcher #pill").animate({ left: "0px" }, 250);
    },
		    function() {
		        $(this).addClass("done");
		    });

    $("li.switch2").hover(function() {
        $("#switcher #pill").stop(true, true);
        $("#switcher #pill").animate({ left: "170px" }, 250);
    },
		    function() {
		        $(this).addClass("done");
		    });

    $("li.switch3").hover(function() {
        $("#switcher #pill").stop(true, true);
        $("#switcher #pill").animate({ left: "340px" }, 250);
    },
		    function() {
		        $(this).addClass("done");
		    });

    $("li.switch4").hover(function() {
        $("#switcher #pill").stop(true, true);
        $("#switcher #pill").animate({ left: "510px" }, 250);
    },
		    function() {
		        $(this).addClass("done");
		    });

    $("li.switch5").hover(function() {
        $("#switcher #pill").stop(true, true);
        $("#switcher #pill").animate({ left: "680px" }, 250);
    },
	        function() {
	            $(this).addClass("done");
	        });

});

function goTo(url) {
    location.href = url;
}
