
$(document).ready(function () {

    Cufon.replace('h1, h2, h3, h4, h5', {
        fontFamily: 'PT Sans'
    });

    Cufon.replace('footer h4', {
        fontFamily: 'PT Sans',
        textShadow: '#000 0px 1px 0px;'
    });

    Cufon.replace('#sidebar .widget span h3', {
        fontFamily: 'PT Sans',
        textShadow: '#fff 0px 1px 0px;'
    });


    $('#sidebar .widget ul li ul').parent().addClass('hasChildren').children('a').append("<span />");
    var children;
    $("#sidebar .widget ul li").hoverIntent(
								  function () {
								      children = $(this).children("ul");
								      if ($(children).length > 0) {
								          $(children).stop(true, true).slideDown();
								      }
								  },
								  function () {
								      $(this).children('ul').stop(true, true).slideUp();
								  }
	);

});
