﻿$(document).ready(function() {
    SetCookie();
    jQuery('ul.according').accordion({
        header: "h2",
        selectedClass: "hover",
        autoheight: false,
        active: parseInt($.cookie("WineLeftMenu")) || 0,
		collapsible: true
    });

});
//右边绑定


function SetCookie() {
    $(".leftMenu .according li h2").each(function(index) {
        var _index = index;
        $(this).click(function() {
           // alert(_index);
            $.cookie("WineLeftMenu", _index);
        });
    });
}
