/**
 * UVa User Interface
 */ 
var UVa = {
    
    /**
     * Init UI functions
     */         
    init: function () {
        UVa.expandableBoxes();
    },
    
    
  
    /**
     * Toogle expandle boxes on home page
     */         
    expandableBoxes: function () {
        $('.expandable-box .tab a').bind('click', function () {
             $(this).parents('.expandable-box').find('.inner').toggleClass('expanded-box');
             $(this).toggleClass('expanded');
             return false;
        });
    } 
}


$(document).ready(function () {
    UVa.init();
});

