// JavaScript Document
$(document).ready(function() {

Cufon.replace('#canvas #mainnav ul li a, h1, h2, h3, h4, h5, #footer,a.download,.post .postdate .postday,.post .postdate .postmonth, .post .entry .excerpt, .previous a, .next a', {hover: true});

$("#footer ul li:last-child").addClass("last");
$("#mainnav ul li:last-child").addClass("last");
$("#tools ul li:last-child").addClass("last");

$("#mainnav ul li a").append("<span></span>");
$("a.download").append("<span></span>");
$("a.link").append("<span></span>");
$("#subnavigation ul li a").append("<span></span>");
$(".post_image_container").hover(
function() {
$(this).children("img.a").stop().animate({"opacity": "0"}, "10");
$(this).children(".post_image_overlayer").stop().animate({"opacity": "0.9"}, "10");

},
function() {
$(this).children("img.a").stop().animate({"opacity": "1"}, "10");
$(this).children(".post_image_overlayer").stop().animate({"opacity": "0"}, "10");

});
 
$(window).bind("load resize", function(){ 
           $("#wrapper").height($(document).height());
$("#wrapper").width($(document).width());
     }); 

});






