 $(document).ready(function(){
	$("#tab_menu a").click(function() {

    var background = $(".pointer");
    $(background).stop().animate({
      left: parseInt($(this).position()['left'])
    }, {
      duration: 300
    });


		$("#tab_menu a").removeClass("active");
		$(this).addClass("active");
		
		var hash = this.href;
		hash = hash.replace(/^.*#/, '');
		
		$(".tab_content").removeClass("active");
		$("."+hash).addClass("active");
		
		return false;
	});
	
	$('.chk_subscription_type').click(function(){
		if ($(this).is(':checked')==true) $('.chk_subscription_type').not(this).attr('checked', false);
	});
	
});
