$(document).ready(function(){
/*	$(".nav-divisions li").simpletip({
		content: 'My Simpletip',
		fixed: true,
		position: 'top'		
	});*/
	var simpletipData = ["Digital Sign Making", "TAPCO Federal", "Signals & ITS", "Parking", "Solar LED Solutions", "StreetScape","Traffic Control","Traffic Signs","V-Loc Post Anchors"];
	
	$(".nav-divisions li").each(function(i){ 
		$(this).simpletip({ 
			content: simpletipData[i],
			fixed: true,
			position: 'top'	 
		}); 
	});
});





 
