$(document).ready(function() {
	
	$("#prodwrapper li.listheading a").attr("href", "#");
	$("#prodnav ul li a").click(function(event) {
		var id = $(this).attr("href");
		$("#prodwrapper li.listheading a").children().remove();
		$("#prodwrapper li.listheading a").attr("class", "viewproducts");
		/*$(id).append('<em>back to top</em>');*/
		$(id).attr("class", "linkup");
	});

	$("#prodwrapper li.listheading a").click(function(event) {
		$(this).children().remove();
		$(this).attr("class", "viewproducts");
	});
	
});