// Using jQuery to hide copyright on Netopia pages
// 09/07/10
// Paul Dickerson
$(document).ready(function(){
   $("a[name=yellowpages]").css("display","none"); 	// hides the powered by att logo
   $("#footeryp").css("display","none");  			//Hides the copyright text
 });
