$.fn.tdpositioningslider = function() {
				    var $el;
				    return this.each(function() {
				        $el = $(this);
				        var newDiv = $("<div />", {
				                "class": "innerWrapper",
				                "css"  : {
				                        "height"  : $el.height(),
				                        "width"   : "100%",
				                        "position": "relative",
				                        "margin": "0px 19px"
				                }
				        });
				        $el.wrapInner(newDiv);
				    });
				};
				
$.fn.tdpositioninggrid = function() {
				    var $el;
				    return this.each(function() {
				        $el = $(this);
				        var newDiv = $("<div />", {
				                "class": "innerWrapper",
				                "css"  : {
				                        "height"  : "40px",
				                        "width"   : "40px",
				                        "position": "relative",
				                        "margin": "3px"
				                }
				        });
				        $el.wrapInner(newDiv);
				    });
				};
				
$.fn.tdpositioninglarge = function() {
				    var $el;
				    return this.each(function() {
				        $el = $(this);
				        var newDiv = $("<div />", {
				                "class": "innerWrapper",
				                "css"  : {
				                        "height"  : "40px",
				                        "width"   : "114px",
				                        "position": "relative",
				                        "margin": "3px"
				                }
				        });
				        $el.wrapInner(newDiv);
				    });
				};
