jQuery.noConflict();

jQuery(function() {

	var contentH = jQuery('#content').height();
	var monitorH = jQuery(window).height();
	var bodyH = jQuery("#all_content").height();

	if(monitorH > bodyH){
		var addHeight = ((monitorH - bodyH) + contentH);
		jQuery('#content').css('height', addHeight + "px");
	}
	
	var contentH = jQuery('#content').height();
	var monitorH = jQuery(window).height();
	var bodyH = jQuery("#all_content").height();

	if(monitorH > bodyH){
		var addHeight = ((monitorH - bodyH) + contentH);
		jQuery('#content').css('height', addHeight + "px");
	}	
	
});
