function ajaxGetLocations()
{
	$.post(
		"/store/index/fetch",
		$("#locator").serialize(),
		function(data)
		{
			document.getElementById("col_1top").innerHTML = data;
		  	$('.store_prod > a > img').qtip({
		      content: {
		         text: false // Use each elements title attribute
		      },
			   position: {
			      corner: {
			         target: 'topMiddle',
			         tooltip: 'bottomMiddle'
			      }
			   },
			   style: { 
			      tip: 'bottomMiddle', // Notice the corner value is identical to the previously mentioned positioning corners 
				  fontWeight: 'bold',
				  color: '#b81216',
				  fontSize: 15,
			      border: {
			         width: 2,
			         radius: 4,
			         color: '#e4161f'
			      }
			   }
			});
		}
	);
}
