<!--
	function showPostsList(id) 
	{
		
		// un-bold all links
		$("#posts_years").find("a").each(function(i)
		{
			$(this).removeClass("nav_linkON");
		});
		
		$("#posts_link_" + id).addClass("nav_linkON");
		
		
		$("#posts_years").find("span").each(function(i)
		{
			$(this).html("[+]");
			$(this).css("font-weight", "normal");
		});	
		
		$("#posts_link_t_" + id).html("[-]");
		
		
		// first hide all month links
		$(".navcontainer").each(function(i)
		{
			$(this).hide();
		});
		
		
		$("#post_" + id).show();
		
		/*
		var e = document.getElementById(id);
		
		if(e.style.display == 'none')
		{
			e.style.display    = 'block';
			e.style.visibility = 'visible';
		
			// toggle the + and - symbols
			var symbol = document.getElementById('s_' + id);
			symbol.innerHTML = '<strong>[-]</strong>';		
		}else{
			e.style.display    = 'none';
			e.style.visibility = 'hidden';
		
			// toggle the + and - symbols
			var symbol = document.getElementById('s_' + id);
			symbol.innerHTML = '<strong>[+]</strong>';		
		}
		*/
		
	}
	
	function showProduct(div_id)
	{
		$(".txt-store #default").hide();
		$(".txt-store .product").each(function () 
				 {
				     $(this).hide();
				 });
		
		$("#" + div_id).show();
	}
	

	
//-->