$(document).ready(function() {
	// Init tabs
	if($('#tabbed').length) {
		$('#tabbed li a').click(function(){
			$('#tabbed li a').removeClass('active');
			$(this).addClass('active');
			$('#tabbed-xtra div').hide();
			$('#' + $(this).attr('rel')).show();
		});
	}
});
