Hi,
If by "when the page is open" you mean when it first loads up in the browser and the input fields may have non-rounded values in then you could use a document ready event to fire the blur event on each of the appropriate elements :
$(document).ready(function() { $(".roundoff2d").blur() ;});
If you mean something else then I'd be happy to help if you can clarify further!
Hope that's of use!