/**
 * Global releases page JS
 *
 * Dependencies:
 *      -   MooTools 1.11
 *          http://mootools.net/
 *      -   ExpandList
 *          /_global/lib/js/class.ExpandList.js
 *      -   SearchForm
 *          /_global/lib/js/class.SearchForm.js
 *
 * Author: Cuban Council / $horty chris@cubancouncil.com
 */
window.addEvent('domready', function() {
    
    // Tab swapper
    
    var buttons = $$('.hero-tabs a');
    var content = $$('.hero-frame');
    
    if (buttons && content) ToothHeroTabs.init(content, buttons);
    
    // Releases list
    if ($('releases')) new ExpandList('releases', true);
    
    // Releases search form
    new SearchForm('releases_search');
    
});

