// JavaScript Document
$(document).ready(function(){
	$('#theisp').change(function(){ispNumber();});
	// setup thickbox popups
	$('div#hiddenInfo').addClass('hidden');	
	$('a.thickbox').each(function(){
		var targetID = $(this).attr('href').substr(1);
		$(this).attr('href','#TB_inline?height=508&width=600&inlineId='+targetID);
	});
});

function ispNumber(){
	var tempNumber = $('#theisp').val();
	$('#theISPNumber').text(tempNumber);
}