/**
 * @projectDescription Monitor Font Size Changes with jQuery
 *
 * @version 1.0
 * @author Dave Cardwell
 *
 * jQuery-Em - $Revision: 24 $ ($Date: 2007-08-19 11:24:56 +0100 (Sun, 19 Aug 2007) $)
 * http://davecardwell.co.uk/javascript/jquery/plugins/jquery-em/
 *
 * Copyright ©2007 Dave Cardwell <http://davecardwell.co.uk/>
 *
 * Released under the MIT licence:
 * http://www.opensource.org/licenses/mit-license.php
 */
jQuery(function(B){var A="emchange";B.em=B.extend({version:"1.0",delay:200,element:B("<div />").css({left:"-100em",position:"absolute",width:"100em"}).prependTo("body")[0],action:function(){var C=B.em.element.offsetWidth/100;if(C!=B.em.current){B.em.previous=B.em.current;B.em.current=C;B.event.trigger(A,[B.em.current,B.em.previous])}}},B.em);B.fn[A]=function(C){return C?this.bind(A,C):this.trigger(A)};B.em.current=B.em.element.offsetWidth/100;B.em.iid=setInterval(B.em.action,B.em.delay)});