// utils script
jQuery.noConflict();
jQuery(document).ready(function() {
	//make sure all checkbox inputs on the page have the checkbox class on them
	jQuery('input:checkbox').addClass('checkbox');
	jQuery('input:submit').addClass('button');
	jQuery('input:button').addClass('button');
});
