$(document).ready(function() {
	
	// slider
	$('#slider').easySlider({
		numeric: true
	});
	
	// skeleton tabs
	var tabContainers = $('div#tabs .entry');
	tabContainers.hide().filter('#chest').show();
	
	$('#skeleton a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#skeleton a').removeClass('cur');
		$(this).addClass('cur');
		return false;
	}).filter(':nth-child(2)').click();
	
});

Cufon.replace('.cufon');
Cufon.replace('#banner .left h2.title', { textShadow: '#b7bbc3 0 1px' });