jQuery(document).ready(function() {

	/* Featured Items */
	jQuery(function() {
		jQuery(".promo_content").hide(); //Hide all content
		jQuery(".promo_nav li:first").addClass("on").show(); //Activate first tab
		jQuery(".promo_nav li:first").find('a.tabber').hide();
		jQuery(".promo_nav li:first div.message").show();
		jQuery(".promo_content:first").show(); //Show first tab content
		
		jQuery(".promo_nav li a.tabber").click(function() {
			jQuery(".promo_nav li div.message").hide();
			jQuery(".promo_nav li a.tabber").show();
			jQuery(".promo_nav li").removeClass("on"); //Remove any "active" class
			jQuery(this).parent().addClass("on"); //Add "active" class to selected tab
			jQuery(this).parent().find('a.tabber').hide();
			jQuery(this).parent().find('div.message').show("medium");
			jQuery(".promo_content").hide(); //Hide all tab content
			var activeTab = jQuery(this).attr("rel"); //Find the rel attribute value to identify the active tab + content
			jQuery(activeTab).fadeIn(); //Fade in the active content
			return false;
		});
	});

	//nifty clipping
	jQuery(".usps li:last").css({"margin":"0"});

	//cufon
	Cufon.replace('.nav li a, .promo_nav li div.message h3, .promo_nav li a.tabber, .usps li h3, .post h2', {
		fontFamily: 'Klavika',
		hover: true
	});
	
});
