/*
 * Javascript Helper Code
 * http://www.aditsoftware.com/
 *
 * Copyright (c) 2010 Adit Software
 */
 
$(document).ready(function() {
    $(".cat_main").click(function () {
        $(this).next().slideToggle("slow");
        $(this).toggleClass("show");
    });
    $(".submenu").hide();
    $(".ss").mouseover(function(){
        $(this).children('a').addClass('act');
        $(this).children('.submenu').show();
        if ($(this).children('a').hasClass('actt')) {
            $(this).children('a').removeClass('actt');
            $(this).children('a').addClass('no-actt');
        }
    });
    $(".ss").mouseout(function() {
        var static_flag = $(this).children('a').hasClass('static');
        if( ! static_flag) {
            $(this).children('a').removeClass('act');
        }
        if ($(this).children('a').hasClass('no-actt')) {
            $(this).children('a').removeClass('no-actt');
            $(this).children('a').addClass('actt');
        }

        $(this).children('.submenu').hide();
    });
});

function OnSendMail(_em) {
    document.location.href = 'mailto:' + _em;
	return false;
}