/**
 * Global Javascript for Classic Miniatures
 * Dependencies: Mootools v1.1+
 * @author Kevin Dew <kev@dewsolutions.co.uk>
 * @copyright Copyright Kevin Dew, 2008
 */

window.addEvent('domready', function()
{
        //Create Menu Settings: (Menu ID, Is Vertical, Show Timer, Hide Timer, On Click ('all', 'main' or 'lev2'), Right to Left, Horizontal Subs, Flush Left, Flush Top)
        qm_create(0,true,0,500,'all',false,false,false,false);
        
        $$('.qmparent').addEvent('click', function(e)
        {
                new Event(e).stop();
        })
});
