$(document).ready(function(){
	$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 3500, true);
	
	$('a[href="#fragment-1"]').click(function() { // bind click event to link
    location.href = "http://www.debt-free-christian.com/financial-calculators.html";
	});
	$('a[href="#fragment-2"]').click(function() { // bind click event to link
    location.href = "http://www.debt-free-christian.com/budgeting.html";
	});
	$('a[href="#fragment-3"]').click(function() { // bind click event to link
    location.href = "http://www.debt-free-christian.com/debt-management.html";
	});
	$('a[href="#fragment-4"]').click(function() { // bind click event to link
    location.href = "http://www.debt-free-christian.com/debt-reduction.html";
	});
	
});

