function write_favorites(){
	
	var cookies = cookie_array("favorites")
	
	for (var key in cookies) {
		if (key.length <= 5) {
			$('p#p_fav').removeClass('hidden');
		}	
		else {
			$('p#p_fav').addClass('hidden');
			$('#ul-fav').append('<li><input type="checkbox" class="check-favorites" /><a href="' + cookies[key] + '">' + key + '</a></li>');		
		};
			};
};
$(document).ready(function(){
	write_favorites()
	$('#ul-fav a').click(function(){
		document.title=$(this).text()
		title=document.title
		});
});


