﻿$(document).ready(function() {
    $("#resz,m ").accordion({ header: "h4", autoheight: false, active: 0 });
    $("#category,m ").accordion({ header: "h4", autoheight: false });
    $("#help,m ").accordion({ header: "h4", autoheight: false });

    $('#resz h4').click(function() {

        var link = $(this).siblings('p').find('a').attr('href');

        var cssHeight = $(this).siblings('p').css('height');
        cssHeight = cssHeight.substring(0, cssHeight.length - 2);
        
        if (parseInt(cssHeight) > 50) {
            window.location = link;
        }
    });
});
