/*global window,document,jQuery *//*!* Run Code: a jQuery Plugin* @author: Trevor Morris (trovster)* @url: http://www.trovster.com/lab/code/plugins/jquery.run-code.js* @documentation: http://www.trovster.com/lab/plugins/run-code/* @published: 11/09/2008* @updated: 26/02/2011* @license Creative Commons Attribution Non-Commercial Share Alike 3.0 Licence*		   http://creativecommons.org/licenses/by-nc-sa/3.0/**/if(typeof jQuery != 'undefined') {	jQuery(function($) {		$.fn.extend({			runcode: function(options) {				var settings = $.extend({}, $.fn.runcode.defaults, options);							return this.each(					function() {						var $$ = $(this),							o = $.metadata ? $.extend({}, settings, $$.metadata()) : settings;						eval($$.text());					}				);			}		});				$.fn.runcode.defaults = {};			}(jQuery));}
