﻿;(function($) {
    $(function() {
        if ($.browser.msie && $.browser.version == '6.0') {
            DD_belatedPNG.fix('#img_history, #img_hayhook_wine, #img_andiron_wine, #img_presshouse_wine, #img_countenance_wine, #img_share, #img_twitter, #img_facebook, #img_join, #img_intro_photo, #img_crafting_photo, #img_winemaker_photo, #img_sustain_photo, #img_right, #img_shadow_right, #img_shadow_left, #wine_footer');

        }
        var sPath = window.location.pathname;
        var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
 
        switch (sPage) {
            case "index.aspx":
                $("#img_menu_intro").attr("src", "/images/menu_intro_on.jpg");
                break;
            case "crafting-wine.aspx":
                $("#img_menu_crafting").attr("src", "/images/menu_crafting_on.jpg");
                break;
            case "sustainability.aspx":
                $("#img_menu_sustain").attr("src", "/images/menu_sustain_on.jpg");
                break;
            case "winemaker.aspx":
                $("#img_menu_winemaker").attr("src", "/images/menu_winemaker_on.jpg");
                break;
        }
        function resetImages() {
            $("#img_wine_hayhook").attr("src", "/images/wine_hayhook_off.jpg");
            $("#img_wine_presshouse").attr("src", "/images/wine_presshouse_off.jpg");
            $("#img_wine_andiron").attr("src", "/images/wine_andiron_off.jpg");
            $("#img_wine_countenance").attr("src", "/images/wine_countenance_off.jpg");
        }
        $("#img_wine_hayhook").click(function() {
            $.ajax({
                url: "/wines/hayhook.htm",
                cache: false,
                success: function(html) {
                    $("#content_container").html(html);
                }
            });
            resetImages();
            $("#img_wine_hayhook").attr("src", "/images/wine_hayhook_on.jpg");
            return false;
        });
        $("#img_wine_presshouse").click(function() {
            $.ajax({
                url: "/wines/presshouse.htm",
                cache: false,
                success: function(html) {
                    $("#content_container").html(html);
                }
            });
            resetImages();
            $("#img_wine_presshouse").attr("src", "/images/wine_presshouse_on.jpg");
            return false;
        });
        $("#img_wine_andiron").click(function() {
            $.ajax({
                url: "/wines/andiron.htm",
                cache: false,
                success: function(html) {
                    $("#content_container").html(html);
                }
            });
            resetImages();
            $("#img_wine_andiron").attr("src", "/images/wine_andiron_on.jpg");
            return false;
        });
        $("#img_wine_countenance").click(function() {
            $.ajax({
                url: "/wines/countenance.htm",
                cache: false,
                success: function(html) {
                    $("#content_container").html(html);
                }
            });
            resetImages();
            $("#img_wine_countenance").attr("src", "/images/wine_countenance_on.jpg");
            return false;
        });
        $.ajax({
            url: "/wines/hayhook.htm",
            cache: false,
            success: function(html) {
                $("#content_container").html(html);
            }
        });
        $("#img_wine_hayhook").attr("src", "/images/wine_hayhook_on.jpg");
    });
})(jQuery);
