$(document).ready(function(){
    $("#topmenu li").hover(
        function() {
            $("ul", this).fadeIn("normal");
            fadeIn = false;
        }, 
        function() {
            $("ul", this).fadeOut("normal");
            fadeIn = true;
        }
    );
    
    if (document.all) {
        $("#topmenu li").hoverClass("open");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};    

function mailTo(m) {
	if (m.options[m.selectedIndex].value != "0") {
		document.location.href = "mailto:" + m.options[m.selectedIndex].value;
	}
}

var showContent = true;
function switchLayout(element) {
	if (showContent) {
		$('#content').css('display', 'none');
		$('#team').css('display', 'block');
		element.innerHTML = 'Hide the team';
		showContent = false;
	}
	else {
		$('#team').css('display', 'none');
		$('#content').css('display', 'block');
		element.innerHTML = 'Show the team';
		showContent = true;
	}	
}
