/*$(document).ready(function(){
	$(".locationController").hover(function(){
		$(this).animate({
			backgroundColor: "#5475B8",
			color: "#FFFFFF"
		},500);
	},function(){
		$(this).animate({
			backgroundColor: "#E0E0E0",
			color: "#000000"
		},500);
	}).click(function(){
		var locationID = $(this).attr('rel');
	});
});*/
