// JavaScript Document
		
	// First we wait until the document is completely loaded using the handy
	// jQuery "ready" method.
	$(window).load(function() {
		// No we can paint our canvas. Something rounded with a shadow ;-)
		$("#title").liquidCanvas(
			"[shadow gradient{from:#660099; to:#000000;}] => bottom_roundedRect{radius:40}");

		$("#content").liquidCanvas(
			"[shadow fill{color:#ffffff}] => roundedRect{radius:10}");

		$("#sidebar").liquidCanvas(
			"[ shadow gradient{from:#660099; to:#000000;}] => roundedRect{radius:10}");	
	});

