function addSmiley(){
	if(!document.getElementById) 
	{
		return;
	}

	bodyText = document.getElementById("body");
	theText = bodyText.innerHTML;

	// replace	
	theText = theText.replace(/\s:-?\)/g, " <img src='http://anand.adane.googlepages.com/icon_smile.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:oops:/g, " <img src='http://anand.adane.googlepages.com/icon_redface.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:lol:/g, " <img src='http://anand.adane.googlepages.com/icon_lol.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:\?:/g, " <img src='http://anand.adane.googlepages.com/icon_question.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?\(/g, " <img src='http://anand.adane.googlepages.com/icon_sad.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?[oO]/g, " <img src='http://anand.adane.googlepages.com/icon_surprised.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	//theText = theText.replace(/\s:-?o/g, " <img src='http://anand.adane.googlepages.com/icon_surprised.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s8-?[oO]/g, " <img src='http://anand.adane.googlepages.com/icon_eek.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	//theText = theText.replace(/\s8-?o/g, " <img src='http://anand.adane.googlepages.com/icon_eek.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	
	theText = theText.replace(/\s:-?\?/g, " <img src='http://anand.adane.googlepages.com/icon_confused.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s8-?\)/g, " <img src='http://anand.adane.googlepages.com/icon_cool.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?[#]/g, " <img src='http://anand.adane.googlepages.com/icon_mad.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	//theText = theText.replace(/\s:-?X/g, " <img src='http://anand.adane.googlepages.com/icon_mad.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?[pP]/g, " <img src='http://anand.adane.googlepages.com/icon_razz.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	//theText = theText.replace(/\s:-?P/g, " <img src='http://anand.adane.googlepages.com/icon_razz.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?\|/g, " <img src='http://anand.adane.googlepages.com/icon_neutral.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s;-?\)/g, " <img src='http://anand.adane.googlepages.com/icon_wink.gif' style='padding:0px !important; border-style:none !important'/> ");	
	
	theText = theText.replace(/\s:cry:/g, " <img src='http://anand.adane.googlepages.com/icon_cry.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:evil:/g, " <img src='http://anand.adane.googlepages.com/icon_evil.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:twisted:/g, " <img src='http://anand.adane.googlepages.com/icon_twisted.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:roll:/g, " <img src='http://anand.adane.googlepages.com/icon_rolleyes.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:!:/g, " <img src='http://anand.adane.googlepages.com/icon_exclaim.gif' style='padding:0px !important; border-style:none !important'/> ");	
	
	theText = theText.replace(/\s:mrgreen:/g, " <img src='http://anand.adane.googlepages.com/icon_mrgreen.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:arrow:/g, " <img src='http://anand.adane.googlepages.com/icon_arrow.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:idea:/g, " <img src='http://anand.adane.googlepages.com/icon_idea.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	theText = theText.replace(/\s:-?[dD]/g, " <img src='http://anand.adane.googlepages.com/icon_biggrin.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	//theText = theText.replace(/\s:-?d/g, " <img src='http://anand.adane.googlepages.com/icon_biggrin.gif' style='padding:0px !important; border-style:none !important'/> ");
	
	bodyText.innerHTML = theText;
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

addLoadEvent(function(){
	addSmiley();
});