﻿$(document).ready(function() {

    // force on state when hovering dropdowns
    $("#navigation .AspNet-Menu-WithChildren ul").hover(
        function() { $(this).addClass('show').parent().addClass('on'); },
        function() { $(this).removeClass('show').parent().removeClass('on'); }
    );

    // rounded border for callout boxes
    $('.callout').wrapInner('<div class="inner" />');

    // intialize any accordions
    $(".accordion").accordion({ autoHeight: false, collapsible: true });

    /*
    $('div.right img, div.left img').load(function() {
        full_width = $(this).outerWidth();
        $(this).parent('div').css('width', full_width);
    });
    */

});




