$(function()
{
	init();
	//setNavi("../");
});

function init()
{
	$.ajax({
	url: 'getdownload.php',
	type: 'GET',
	success: function(msg)
	{
		$('#content').html(msg);
/*		$(".panel:even").css("clear","both");
		$(".panel")
			.hover(function()
			{
				var id = $(this).attr("id");
				$(this).animate(
				{
					width:"250px",
					height:"250px"
				});
//					alert($("#"+id+" > dd > img").html())
				$("#"+id+" > dd > img").animate(
				{
					width:"200px",
					height:"200px"
				});
			},function()
			{
				var id = $(this).attr("id");
				$(this)
					.stop()
					.css({
						width:"200px",
						height:"200px"
					});
				$("#"+id+" > dd > img")
					.stop()
					.css({
						width:"150px",
						height:"150px"
					});
			})
			.click(function()
			{
				var id = $(this).attr("id");
				$("#lightBox").html($("#"+id+"lightbox").html());
				showLightBox();
			});
*/
	}

});
} 