// JavaScript Document

jQuery(function($) {
		   
	// $('#branding .container').append('<a id="expand" href="#">Expand</a>').append('<a id="collapse" href="#">Collapse</a>');

	// $('#branding').css('margin-top', -180);

	// $('#expand').click(
	// 			function (e) {
	// 				e.preventDefault();
	// 				jQuery(this).fadeOut('normal');
	// 				jQuery('#collapse').fadeIn('normal');
	// 				jQuery('#branding').animate( { marginTop: 0 }, 'normal');
	// 				jQuery.cookie('branding', 'expanded');
	// 			}
	// 		);
	// 
	// 		$('#collapse').click(
	// 			function (e) {
	// 				e.preventDefault();
	// 				jQuery(this).fadeOut('normal');
	// 				jQuery('#expand').fadeIn('normal');
	// 				jQuery('#branding').animate( { marginTop: -180 }, 'normal');
	// 				jQuery.cookie('branding', 'collapsed');
	// 			}
	// 		);
		
	Cufon.replace('#main h2')('#navigation li a')('#breadcrumbs a')('#breadcrumbs strong')('.widget_title')('.EC_previousMonthLarge')('.EC_nextMonthLarge');

});