﻿//some jquery functions pat is using on the LB website

$(document).ready(function() {
    //make the homeboxes clickable (url is from a child <a> tag within the div)
    $('div.clickable').click(function() {
            window.location = $(this).children('a').attr('href');
            return false;
    });
    
    //expand and collapse divs (e.g on FAQs)
    $('div.collapsible:eq(0)> p').hide();
    $('div.collapsible:eq(0)> ul').hide();
    $('div.collapsible:eq(0)> div').hide();
    $('div.collapsible:eq(0)> h3').click(function() {
        $(this).next().slideToggle('fast');
    });
    
    
    
});

