jQuery.fn.elementHeight = function(callback) {
	var theElement = jQuery(this);
	var totalHeight = theElement.width();
	totalHeight += parseInt(theElement.css("padding-top"), 10) + parseInt(theElement.css("padding-bottom"), 10);
	totalHeight += parseInt(theElement.css("margin-top"), 10) + parseInt(theElement.css("margin-bottom"), 10);
	totalHeight += parseInt(theElement.css("borderTopWidth"), 10) + parseInt(theElement.css("borderBottomWidth"), 10);
	return totalHeight;
}
jQuery.fn.elementWidth = function(callback) {
	var theElement = jQuery(this);
	var totalWidth = theElement.width();
	totalWidth += parseInt(theElement.css("padding-left"), 10) + parseInt(theElement.css("padding-right"), 10);
	totalWidth += parseInt(theElement.css("margin-left"), 10) + parseInt(theElement.css("margin-right"), 10);
	totalWidth += parseInt(theElement.css("borderLeftWidth"), 10) + parseInt(theElement.css("borderRightWidth"), 10);
	return totalWidth;
}
jQuery(function(){
	return;
	var docWidth = jQuery(document).width();
	if(docWidth > 1200){
		docWidth = 1250;
		var wrapWidth = docWidth;
		jQuery('.secondaryColumn').css('width', '220px');
		var mainWidth = wrapWidth - (jQuery('.secondaryColumn').elementWidth() * 2);
		jQuery('#wrapper').css('width', wrapWidth + 'px');
		jQuery('#mainColumn').css('width', mainWidth + 'px');
	}
});