$(document).ready(function()
{
	$.ajax
	({
		method:	"get",
		url:	"/",
		data:
		{
			alias:	"template",
			cmd:	"new_templates"
		},
		
		dataType: "html",

		success: function(result)
		{
			$("#templates").html(result);
			$(".scrollable").scrollable();
			$('.template .thumbnail a img').ipreview();
		}
	});
});
