
function bookmarkthis(title,url) {
	
	if (navigator.appName == 'Netscape')
	{
		//	window.sidebar.addPanel(title, url, "");
	}
	else if (navigator.appName == 'Microsoft Internet Explorer')
	{
		window.external.AddFavorite(url, title);
	}
}


$(document).ready(function(){
	
	$('#top10box table tr.page2').each(function(){
		$(this).addClass('hidden');
	});
	
	$('#morehosts').click(function(){
		$('#top10box table tr.page2').each(function(){
			$(this).toggleClass('hidden');
		});
		
		if($('#morehosts').html() == 'More hosting selections...'){
			$('#morehosts').html('Less hosting selections...');
		}else{
			$('#morehosts').html('More hosting selections...');
		}
		
		return false;
	});
	
});
