/**
 * jQuery Opacity Rollover plugin
 *
 * Copyright (c) 2009 Trent Foley (http://trentacular.com)
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

function showSubmenu()
{
		gallery  = document.getElementById('gallery');
		submenu  = document.getElementById('subMenu');
		submenu.style.display = 'block';
		gallery.className = 'mainMenu active';
		gallery.blur();
}
