$(function(){
		   $("ul.thumb").html("");
	$('.slider').cycle({
			fx		:'fade',
			timeout	: 4000,
			speed   : 2000,
			pager	:'.thumb',
			activePagerClass: 'active',
			pagerAnchorBuilder: function(idx, slide) {
				index = idx+1;
				if(index==1){
			      return '<li><a href="#"> <span>Becoming a member you will</span> <strong>Save Money</strong> </a></li>';
				}
				if(index==2){
			      return '<li><a href="#"> <span>Becoming a member you will</span> <strong>Save Time</strong> </a></li>';
				}
				if(index==3){
			      return '<li><a href="#"> <span>Becoming a member you will</span> <strong>Make Money</strong> </a></li>';
				}
	}
	});
});

$(function(){
	$('#top_tip_slider').cycle({
			fx		:'fade',
			timeout	: 4000,
			speed   : 2000
	});
});

$(function(){
	$('#tooltip li').hover(function (){ 
		$(".top_tip div").hide();
		varCurrent = "#top_content_"+$(this).index();
		$("#top_content_"+$(this).index()).show();
	});
});
