Cufon.replace('h5', { fontFamily: 'museo' });
Cufon.replace('#header p.description', { fontFamily: 'museo' });
Cufon.replace('.post .post-title a', { fontFamily: 'museo' });
Cufon.replace('.post h1', { fontFamily: 'museo' });
Cufon.replace('.post h2', { fontFamily: 'museo' });
Cufon.replace('.cufon', { fontFamily: 'museo' });


jQuery(document).ready(function($) {
  $(".open").hover( 
    function () {
      $("> .up", this).fadeIn('fast');
    },
    function () {
      $("> .up", this).fadeOut('fast');
    }
  ); 
});

jQuery('document').ready(function(){
	jQuery("h2.feature-headline").vAlign();
});

(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = (ph - ah) / 2;
	$(this).css('margin-top', mh);
	});
};
})(jQuery);

