jQuery(document).ready(function(){
    var elements = document.body.getElementsByTagName('*');
            for(i = 0; i < elements.length; i++)
        {
            var tags = elements[i];
                    var coordinates = $(tags).attr("coord") ? $(tags).attr("coord").split(":") : '';
                                    
                    if(coordinates[0] != undefined){				//IE is crying because coordinates get undefined at the end of the loop
                    tags.style.position = "absolute";
                    tags.style.top = coordinates[1]+"px";
                    tags.style.left = coordinates[0]+"px";
                    tags.style.zIndex = coordinates[2];
                    }
            }
});
