
var IE = (navigator.userAgent.indexOf('MSIE') != -1);

function theCursor(obj, c)
{
    if(!IE)
        return;

    if(typeof obj == 'object')
        obj.style.cursor = c;
}
