function showTemplate(template_url)
{$("#ajax-detail-placer").html("<img src='/interface/imgs/ajax-loader.gif' alt='loading'>");$.ajax({url:"/ajax"+template_url,dataType:'html',type:'post',success:function(html){$("#ajax-detail-placer").html(html);},complete:function(){$("a[rel='gallery']").fancybox();}});return false;}
$(document).ready(function(){$(".template-list a").bind("click",function(){$(this).attr("disabled",true);showTemplate($(this).attr("title"));return false;});});function showhide(id){if(document.getElementById(id).style.display=='none'){document.getElementById(id).style.display='block';}else{document.getElementById(id).style.display='none';}}