jQuery(document).ready(function(){
	$("div.navShowHide").prepend("<div class='showLink'><span>Show details</span></div>");	
	hide_the_div($("div.navShowHide .content"),true);
	$(".showLink").click(function () {
		show_the_div($(this).next(),true)
		hide_the_div($(this),true)
	});

	$("div.navShowHide .content").click(function () {
		hide_the_div($(this),true)
		show_the_div($(this).prev(),true)
	});
});


