$(function(){
		$("div#jquery-sample").load("http://shotasawadadesign.net/wp-content/themes/ssd/jquery-sample.html");
	});

function show01()
{
	$("div.a01").show(1000);
	$("div.a01").css("background","#aa0000");
	$("div.a01").css("width",Math.floor(Math.random()*100));
	$("div.a01").css("height","153");
}

function hide01()
{
	$("div.a01").hide(1000);
}
