jQuery(document).ready(function() {
								
    $("#sidenav").liquidCanvas(
            "[shadow{color:#ccc;} fill{color:#fff;}] => roundedRect{radius:10}");
	
	
	
	/*
   $("#globalnav ul li").liquidCanvas(
             "[ shadow{color:#666;width:1} fill{color:#fff;} border{color:#ccc;width:1}] => roundedRect{radius:6}");
		
$("#globalnav ul li").hover(
      function () {
          $(this).liquidCanvas(
            "[ border{color:#ccc;width:1} shadow{color:#ccc;} gradient{from:#e9e9e9; to:#fff;}]  => roundedRect{radius:6}");
      }, 
      function () {
       $(this).liquidCanvas(
            "[border{color:#ccc;width:1} shadow{color:#ccc;}  fill{color:#fff;}] => roundedRect{radius:6}");
      }
    );



   $("#myaccount").liquidCanvas(
             "[shadow fill] => roundedRect{radius:6}");
   
  

	$("#myaccount").hover(
      function () {
          $(this).liquidCanvas(
            "[shadow{color:#ccc;} gradient{from:#e9e9e9; to:#fff;}]  => roundedRect{radius:6}");
      }, 
      function () {
       $(this).liquidCanvas(
            "[shadow{color:#ccc;} fill{color:#fff;}] => roundedRect{radius:6}");
      }
    );

*/	

	
	$("#sidenav li:last").addClass("last");
    
	
});