// 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);
	});
	// Contact us page expandable content
	if($('#content').hasClass('support')){
		$('.expandableRow').hide();
		$('.expandableHead').click(function(){
			$('.expandableHead').removeClass('arrowUp');
			if(!$(this).parent().children('.expandableRow').is(':hidden')){
				$(this).removeClass('arrowUp').parent().children('.expandableRow').hide();
			} else {
				$('.expandableRow').hide();
				$(this).addClass('arrowUp').parent().children('.expandableRow').show();
			}
	    });
   }
   //end of contact us page
});

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