// These are the mouseover images defined in the stuff array below
//No. 	file(s)		image base name
// 0	index.php	top_swsupport
// 1	index.php	top_bbsolution
// 2	index.php	top_itsolution
// 3	index.php	top_product
// 4	index.php	case_study
// 5	index.php	dl
// 6	bb section	bb_whatis
// 7	bb section	bb_advantage
// 8	index.php	bbseminar_banner
// 9 	co_business.php	btn_itsolution
// 10 	co_business.php	btn_websi
// 11	co_business.php	btn_sipvoip
// 12	co_business.php	btn_embedded
// 13	co_business.php	btn_bb
// 14	so_it_solution_googleapps_integration.php	btn_sso
// 15	so_it_solution_googleapps_integration.php	btn_sitesmig
// 16	so_it_solution_googleapps_integration.php	btn_sitesint	
// 17	ne_event_googleseminar0805.php	googleseminar_banner
// 18	so_it_solution_googleapps_integration_temp.php	btn_ndsso
// 19	so_it_solution_googleapps_integration_temp.php	btn_ndmail
// 20	so_it_solution_googleapps_integration_temp.php	btn_ndsites	
// 21	so_it_solution_googleapps_integration_temp.php	btn_ndnotes
//22	index.php	top_gep

// Some variables

var base= "images/mo_"
var nrm = new Array();
var omo = new Array();
var stuff = new Array('top_swsupport','top_bbsolution','top_itsolution','top_product','case_study','dl','bb_whatis','bb_advantage','bbseminar_banner','btn_itsolution','btn_websi','btn_sipvoip','btn_embedded','btn_bb','btn_sso','btn_sitesmig','btn_sitesint','googleseminar_banner','btn_ndsso','btn_ndmail','btn_ndsites','btn_ndnotes','top_gep');

// Pre-load part.

if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + ".jpg"
		omo[i] = new Image;
		omo[i].src = base + stuff[i] + "_omo.jpg";
	}
}


// The functions: first mouseover, then mouseout

function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = omo[no].src
	}
}

function out(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = nrm[no].src
	}
}
