var wwwroot = ""; 

function getAjaxContent(id)
{
	var d=new Date();
	$("#layer").center().html('<div class="loading"></div>').fadeIn('fast').load(wwwroot+'/index.php?tpl=1064&id='+id+'&rnd='+d.getTime());
}

jQuery.fn.center = function () 
{
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
}

$(document).ready(function()
{
	if ($(".trigger"))
	{
		$(".trigger").click(function()
		{
			$(".left-menu-container").toggle("fast");
			$(this).toggleClass("active");
			return false;
		});
	}
});
