$(document).ready(function(){
	$(".viewMore").clickFunction(showMore);
});

function showMore(){
	var tbl = $("#tbl"+ $(this).attr("id"));
	if (tbl.hasClass("showAll")){
		// Show top 10
		tbl.removeClass("showAll")
		tbl.find("tr:gt(10)").hide();
		$(this).text("Visa alla");
	} else {
		// Show all
		tbl.addClass("showAll")
		tbl.find("tr:not(:visible)").show();
		$(this).text("Visa top 10");
	}
}
