/**
 * NOTOsoft Website
 *
 * Copyright 2008-2010 NOTOsoft Web Designs Inc.
 * Licensed under the GPLv3 license
 *
 * You should have received a copy of the GNU General Public License
 * along with this file.  If not, see <http://www.gnu.org/licenses/>.
 */

$(function() {
    $('#wrapper #mainArea #mainContent .cellIcons').mouseover(function() {
        var dynamicTipContent = '';
        switch($(this).attr('id')) {
            case 'cellIconIdea': dynamicTipContent = '<h2>The Idea</h2>'; break;
            case 'cellIconProject': dynamicTipContent = '<h2>The Project</h2>'; break;
            case 'cellIconDevelopment': dynamicTipContent = '<h2>The Development</h2>'; break;
            case 'cellIconTest': dynamicTipContent = '<h2>The Testing</h2>'; break;
            case 'cellIconFinish': dynamicTipContent = '<h2>The Finish</h2>'; break;

        }

        $.OmniTip.show($(this), {
            tipContent: dynamicTipContent
        });
    });
});
