jQuery(document).ready(function($){ // START

  jQuery('input[title], textarea[title]').each(function() {if($(this).val() === '') {$(this).val($(this).attr('title'));}
    $(this).focus(function() {if($(this).val() == $(this).attr('title')) {$(this).val('').addClass('focused');}});
    $(this).blur(function() {if($(this).val() === '') {$(this).val($(this).attr('title')).removeClass('focused');}});
  });


  jQuery('.fade').hover(
    function() {$(this).fadeTo("medium", 1);},
    function() {$(this).fadeTo("medium", 0.5);}
  );

  jQuery('.warning, .question, .disclaim, .post-button, .tweet').corner('5px');
  jQuery('ul.pagination, .widget-tabs-title li a').corner('20px');
  jQuery('.current-page, ul.pagination a').corner('12px');
  jQuery('.section, .section-wide').corner('8px');

  jQuery(".uniform, .aside input, .aside textarea, .aside select, .aside button, .section input, .section textarea, .section select, .section button").uniform();

}); // END

Cufon.replace('.header-title', {fontFamily: 'novecento'});
