﻿jQuery.noConflict();

jQuery(document).ready(function() {

    jQuery(document).pngFix();

    jQuery("li.switch1").hover(function() {
        jQuery("#switcher #pill").stop(true, true);
        jQuery("#switcher #pill").animate({ left: "2px" }, 250);
    },
		    function() {
		        jQuery(this).addClass("done");
		    });

    jQuery("li.switch2").hover(function() {
        jQuery("#switcher #pill").stop(true, true);
        jQuery("#switcher #pill").animate({ left: "198px" }, 250);
    },
		    function() {
		        jQuery(this).addClass("done");
		    });

    jQuery("li.switch3").hover(function() {
        jQuery("#switcher #pill").stop(true, true);
        jQuery("#switcher #pill").animate({ left: "393px" }, 250);
    },
		    function() {
		        jQuery(this).addClass("done");
		    });

    jQuery("li.switch4").hover(function() {
        jQuery("#switcher #pill").stop(true, true);
        jQuery("#switcher #pill").animate({ left: "588px" }, 250);
    },
		    function() {
		        jQuery(this).addClass("done");
		    });

    jQuery("li.switch5").hover(function() {
        jQuery("#switcher #pill").stop(true, true);
        jQuery("#switcher #pill").animate({ left: "782px" }, 250);
    },
	        function() {
	            jQuery(this).addClass("done");
	        });

});

function goTo(url) {
    location.href = url;
}
