/* ================================================================
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
/* <![CDATA[ */
roller = function() {
//document.getElementById("code").focus();
var c = "";

jQuery("#code").keypress(function (e) {
	if (e.which > 31 && e.which <123) {
		c = c + String.fromCharCode(e.which);
		len=c.length;
		if (len == 1 && e.which > 96) {c = String.fromCharCode(e.which-32);}
jQuery('#innerContainer')	.css("top", "0px")
jQuery('#innerContainer li').hide();

jQuery("#innerContainer li a").each(function(i) {
if (jQuery(this).text().substring (0,len) == c) {jQuery(this).parent().show();}
});

}
});

jQuery("input#code").keydown(function (e) {
if (e.which == 8) {
len = c.length-1;
c = c.substring(0,len);
jQuery('#innerContainer')	.css("top", "0px")

jQuery('#innerContainer li').hide();
jQuery("#innerContainer li a").each(function(i) {
if (jQuery(this).text().substring (0,len) == c) {jQuery(this).parent().show();}
});
}
});

}
/* ]]> */
