jQuery(document).ready(function() {
    jQuery = jQuery.noConflict();
  
	// Vars
	var leftColumnHeight = jQuery('#leftcolumn').height();
	var userOneTwoHeight = jQuery('#userone_usertwo').height();

	// Calculations
	jQuery('#usertwo_userthree .usermod:last-child').css({margin:"0px"}); 
	
	// Number A List
	jQuery("ul.numbered li").each(function (i) {
	   i = i + 1; 
	if (i < 10) {
	   jQuery(this).prepend('0' +  i + '. ');
	  }
	else {
	  jQuery(this).prepend( i + '. ');  
	}
    });   

	// Add Some Last Classes To Remove dotted BG on the last LI
   jQuery('ul.dottedListOne li:last, ul.dottedListOne li:last').addClass("last");
   
   // Fix Module Title Lins In IE
  var mainbodyWidth = jQuery("#mainbody").width();
  jQuery(".componentheading, dl.tabs").width(mainbodyWidth)
  
  	jQuery('a.button').each(function () {
		jQuery(this).wrapInner('<span class="buttonWrap"></span>');
   });
});
