$(document).ready(function() {
	Cufon.replace('#navigation ul li a, #featured-details h2, #content h3, .total-weight-cnt span', { fontFamily: 'Gotham Medium' });
	Cufon.replace('#featured-details h1', { fontFamily: 'Gotham Black' });
	Cufon.replace('span.choose, #sidebar h3, .postwrapper h1', { fontFamily: 'Gotham Book' });
	Cufon.replace('#breadcrumb a.current', { fontFamily: 'Gotham Light' });
	Cufon.replace('span.measure', { fontFamily: 'Gotham Thin' });
	
	$('form').toggleClass('highlight-on');
	
	$('form input,form textarea, form select, form radio, form checkbox').focus(function(e){
		
		$this = $(this);
		$this.parents('form').toggleClass('highlight-on');
		$this.parents('fieldset').toggleClass('highlight-on');
		
	});
	
	$('form input,form textarea, form select, form radio, form checkbox').blur(function(e){
																
		$this.parents('form').toggleClass('highlight-on');
		$this.parents('fieldset').toggleClass('highlight-on');
		
	});

	
});
