

$(document).ready(function() {
	$('body').addClass('jse');
	bestInShowAnchors();
	Cufon.replace(['h1, #leftCol h2, #rightCol h3, #rightCol .defaultBox ul li'], { fontFamily: 'Tire Shop', hover:true});
	Cufon.replace(['#footer p, #leftCol h3, div.post .blueDot, .pagination a, .pagination span, .fullWidth .item h2'], { fontFamily: 'ITC Lubalin Graph Std', hover:true});
});

function bestInShowAnchors(){
	var anchorLinks = $('.page-id-51 .defaultBox ul li a');
	if (anchorLinks.length > 0){
		$('#leftCol a').each(function(){
			$(this).attr('id', $(this).attr('name'));						  
		});
		anchorLinks.each(function(){
			$(this).click(function(){
				slideTo($(this).attr('href'));
				return false;
			});			  
		});
	}
}

function slideTo(id){
	$('html,body').animate({scrollTop: $(id).offset().top},'slow');
}
