jQuery(document).ready(function(){
		jQuery('#featured div').hide(); // Hide all divs
		jQuery('#featured div:first').show(); // Show the first div
		jQuery('#featured div:first div').show();
		jQuery('#featured-tabs li:first').addClass('active'); // Set the class of the first link to active

		});