    //Input fillin / text area hover lable
    function input(obj, e) {
        if (e.type == 'focus') {
            if (obj.value == obj.title) {
                obj.value = '';
                obj.style.color = '#000';
				obj.style.fontFamily = 'Arial';
				obj.style.fontSize = '14px';
            }
            else { obj.select(); }
        }
        else if (e.type == 'blur') {
            if (obj.value == '') {
                obj.value = obj.title;
                obj.style.color = '#999';
                obj.style.fontFamily = 'Arial'
				obj.style.fontSize = '14px';				
            }
        }
    }
	
	// for main page buttons	
	function tdevent(obj,e)
	{
		if (e.type == 'mouseover')
			obj.className="tdMouseover";
        else if (e.type == 'mouseout')
			obj.className="tdMouseout";
        else if (e.type == 'mousedown')			
			obj.className="tdMousedown";
		else if (e.type == 'click')			
        	location.href=obj.title;
	}
