$(document).ready(function(){
	$.ajax({
		url:'ipCustomer.do',
		type:'post',
		dataType:'json',				
		success:function(data){
			if (data.return_index != 'index.html') {
				window.location.href = data.return_index;
			}
		}
	});
});