$(function() {
	var  parentHeight = $("#content1 .inner").parent().innerHeight();
	var height = $("#content1 .inner").outerHeight();
	var width = $("#content1 .inner").outerWidth();
	var orgWidth = width;
	
	if( $("#content1 .inner").text().length > 15 ) {
		while( height < parentHeight && width/height > 4 ) {
			width = $("#content1 .inner").outerWidth();
			height = $("#content1 .inner").outerHeight();
			$("#content1 .inner").css("width",width-10);
		}
	}
});
