jQuery(document).ready(function() {
	jQuery('#map .pointer').bind('mouseover', function(){
		if (jQuery(this).hasClass('pointer1')) left = -1; else left =0;
		t =jQuery(this);
		t.find('img').animate({
			width: 23,
			height: 39,
			marginTop:-2,
			marginLeft:left
		}, 100, function(){
			t.find('div').show('slow');
		});		
	});
	jQuery('#map .pointer').bind('mouseout', function(){
		jQuery('#map .text').stop(true,true).hide();
		jQuery(this).find('img').animate({
			width: 21,
			height: 36,
			marginTop:0,
			marginLeft:0
		}, 150, function(){
			//Complete
		});
	});	
});
