//<![CDATA[
$(document).ready(function(){
	$('a.view-more-link').livequery(function(){
		$(this).click(function(){
			$(this).parents('ul:first').children('li').css('display','block');
			$(this).parents('ul:first').append('<li><a class=\"view-less-link\" href=\"#\">View Less...</a></li>');
			$(this).parents('li:first').remove();
		
			return false;
		});
	});
	$('a.view-less-link').livequery(function(){
		$(this).click(function(){
			$(this).parents('ul:first').children('li:gt(4)').hide();
			$(this).parents('ul:first').append('<li><a class=\"view-more-link\" href=\"#\">View More...</a></li>');
			$(this).parents('li:first').remove();
		
			return false;
		});
	});
});
//]]>