// JavaScript Document
function moIdeas()
{
//alert('a');
var obj1 = document.getElementById("homeA");
var obj2 = document.getElementById("homeB");
obj1.className='hide';
obj2.className='show';
//obj1.style.display = 'none';
//obj2.style.display = 'block';
}

function moIdeasOut()
{
var obj1 = document.getElementById("homeA");
var obj2 = document.getElementById("homeB");
obj1.className='show';
obj2.className='hide';
}

function moInfo()
{
var obj3 = document.getElementById("homeC");
var obj4 = document.getElementById("homeD");
obj3.className='hide';
obj4.className='show';
}

function moInfoOut()
{
var obj3 = document.getElementById("homeC");
var obj4 = document.getElementById("homeD");
obj3.className='show';
obj4.className='hide';
}

