jQuery.fn.selectSizer = function(C,E){
	$this = $(this);
	$this.wrap('<div style="height:'+$this.height()+'px;"></div>');
	$this.css('position','absolute')
	.data('originalWidth',$this.width())
	.mouseover(function(){
		$(this).css('width','auto');
	}).blur(function (){
		$this = $(this);
		$this.width($this.data('originalWidth'));
	});
};
	
if (console == undefined){
	var console={
		log : function(A){
			return;
		}
	};
};
