//Function for hard coding status bar textwindow.defaultStatus=' :: Welcome to The Ruhama Group Bangladesh Limited :: ';
/*function mv(){
	window.status=window.defaultStatus;
	return true;
}

if(document.all){
	document.onmouseover=mv;
}
else if(document.layers){
	window.captureEvents(Event.MOUSEOVER);
	window.onmouseover=mv;
}
*/
//This function will change image on mouse over event
function SwapImage(name, over)
{
	if (over)
		document.images[name].src = "../images/" + name + "_h.gif";
	else
		document.images[name].src = "../images/" + name + ".gif";
}