var cities = new Array(6);
cities[0] = 'anaheim';
cities[1] = 'laMesa';
cities[2] = 'MissionViejo';
cities[3] = 'Murrieta';
cities[4] = 'RanchoCucamonga';
cities[5] = 'SantaAna';
cities[6] = 'Scranton';


function move(number){
	$("#mapContainer").stop().animate({ marginLeft: ""+number+""}, 250 );
}
function displayPopUp(city,number) {
	for (i=0; i<7; i++){
		hidePopUp(cities[i]);	
	}
    var time = 250;
	$('#'+city+'').css({top: "10px"});
	$('#'+city+'').stop().animate({
          top: '0px',
          opacity: 1
        }, time, 'swing');
	move(number);
}
function hidePopUp(city){
    var time = 250;
	$('#'+city+'').stop().animate({ opacity: 0, top: '10px',}, time, 'swing');
}


