  $(function() {

          $("#content .code fieldset input.copy").each(function() {
                //Create a new clipboard client
                var clip = new ZeroClipboard.Client();

                //Cache the last td and the parent row    
                var lastTd = $(this);
                var parentRow = lastTd.parent("fieldset");

                //Glue the clipboard client to the last td in each row
                clip.glue(lastTd[0]);

                //Grab the text from the parent row of the icon
                var txt = $("input.text", parentRow).val();
                clip.setText(txt);

            });
        });                       
        
        sfHover = function() {
		var sfEls = document.getElementById("menu").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}