/* sets up the cufon */

function cufonReplace()
{
	Cufon.replace('h1, h2, h3, h4, h5, ul#topnav li a.toplevel, div.tabbed_pane ul.tabbed_pane_nav li a', {
		fontFamily: 'Helvetica LT Std',
		hover: true,
		textShadow: '#fff 0px 1px'
	});
	
	Cufon.replace('div#blogs_wrapper h4', {
		fontFamily: 'Helvetica LT Std',
		hover: true,
	});
}

// run the replacement
$(document).ready(function () 
{
    cufonReplace();
});

