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

	// Calculations
	jQuery('#bottomMods :last-child .usermodwrap').css({padding:"0px"}); 
	jQuery('#userthree_userfour :last-child .usermodwrap').css({padding:"0px"}); 
	jQuery('#usersix_userseven :last-child .usermodwrap').css({padding:"0px"});
	jQuery('#left').height(leftColumnHeight);
	jQuery('#userone_usertwo .usermod > :first-child').height(userOneTwoHeight);
	jQuery('#top .dropdown li:last').addClass("last");
	
});


