$(document).ready(function(){		
	// Tabs for Feeds
	$(function () {
		var tabContainers = $('div.feeds > ul');
		tabContainers.hide().filter(':first').show();

		$('div.feeds h3 a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('div.feeds h3 a').removeClass('on');
			$(this).addClass('on');
			return false;
		}).filter(':first').click();
		
	    $('#mycarousel').jcarousel();
	});

});

