$(function(){
/* Start DocumentReady */
$('.hideWrap .hideBtn').each(function(i){var cookie=getCookie('hideBtn'+i);
if (cookie&&cookie.indexOf('show')>-1)$(this).toggleClass('show').parents('.hideWrap').find('.hideCont').show();})
/* StartClickFunction */
$('.hideWrap .hideBtn').click(function(){cont=$(this).parents('.hideWrap').find('.hideCont');
$(this).toggleClass('show');cont.slideToggle('normal');
var hideBtn=$('.hideWrap .hideBtn').index($(this)),isShow=$(this).attr('class');
setCookie('hideBtn'+hideBtn,isShow,365);
return false;
});
/* End DocumentReady */
});
