$(document).ready(function(){
	$("#tab_worship a").click(function () { 
		//grabbing the position, it automatically left-aligns the new div
		if(0 !=  $("#page_worship").position().left){
			$("#container_inner").animate({ scrollLeft: $("#page_worship").position().left }, 300);
		}
	});
	$("a#tab_belong").click(function () { 
		//grabbing the position, it automatically left-aligns the new div
		if(0 !=  $("#page_home").position().left){
			$("#container_inner").animate({ scrollLeft: $("#page_home").position().left }, 300);
		}
	});
	$("a#tab_believe").click(function () { 
		//grabbing the position, it automatically left-aligns the new div
		if(0 !=  $("#page_home").position().left){
			$("#container_inner").animate({ scrollLeft: $("#page_home").position().left }, 300);
		}
	});
	$("a#tab_become").click(function () { 
		//grabbing the position, it automatically left-aligns the new div
		if(0 !=  $("#page_home").position().left){
			$("#container_inner").animate({ scrollLeft: $("#page_home").position().left }, 300);
		}
	});
	$("a#tab_besent").click(function () { 
		//grabbing the position, it automatically left-aligns the new div
		if(0 !=  $("#page_home").position().left){
			$("#container_inner").animate({ scrollLeft: $("#page_home").position().left }, 300);
		}
	});
});