$(document).ready(function() {

var arrayData = ['1', '2', '3'];

$("#weekPrev a").each(function(){
	i++ = 0;
	//i++;
   $(this).simpletip({ 
   	//content: arrayData[i], 
    fixed: true,
    position: ["50", "-7"],
    boundryCheck: false    
   	});
	//alert(i);
   	$('.tooltip').load(i + '.txt');
   	
});

});