$(document).ready(function() {
	// Hide everything except the right most tab to start
	$(".whats-new-box").not(".whats-new-box:first").hide();
	$(".no-more").hide();
  
	// Click function for the breadcrumbs
	$("#whats-new-breadcrumbs a").click(function() {
	
		// handle the 'active' breadcrumb
		$(this).addClass("whats-new-active");
		$("#whats-new-breadcrumbs a").not(this).removeClass("whats-new-active");
		
		// Show the selected box
		var section = "#"+$(this).attr("rel");
		$(section).fadeIn();
		$(".whats-new-box").not(section).hide();
		
	}); // end breadcrumbs clicking
  
	// Click for More link
	$("#whats-new-more-link").click(function() {
		$(".no-more").fadeIn("slow");
		$(this).fadeOut("fast");
	});
});
