// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults



$(document).ready(function() {
		$('#chicago_txt').show();
		$('#chicago_img').show();
		
		var pos=$('#chicago_img').position();
		pos.left-=45-$('#chicago_img').width()/2;
		$('#bubble').css('top',pos.top-23+'px').css('left',pos.left+'px');
		$('#bubble p').text('Chicago');
		
		$('.sitelist li a').hover(function(){
			   
			$('#usamap img').hide();
			$('.sites').hide();
			
			$('#'+$(this).attr('rel')+'_img').show();
			$('#'+$(this).attr('id')+'_txt').show();
			
			pos=$('#'+$(this).attr('rel')+'_img').position();
			pos.left-=45-$('#'+$(this).attr('rel')+'_img').width()/2;
			
			$('#bubble').css('top',pos.top-23+'px').css('left',pos.left+'px');
			$('#bubble p').text($(this).attr('name'));
        });
	});
	
