jQuery(document).ready(function() {
		jQuery('#map_canvas').hover(function(){
		jQuery(this).animate({width:'200px'}, 300);
		jQuery(this).animate({height:'300px'}, 300);
		
	}, function() {
		jQuery(this).animate({height:'125px'}, 300);
		jQuery(this).animate({width:'125px'}, 300);
	});
//	jQuery('#bookListings .post:last-child').css('border','none');
//	jQuery('.result:last-child').css('border','none');

	
		
});

/*jQuery(document).ready(function() {
		jQuery('#map_canvas').hover(function(){
		jQuery(this).animate({
			width : '200px',
			height : '300px'
		}, 300 );
	}, function() {
jQuery(this).animate({
			width : '125px',
			height : '125px'
		}, 300 );
	});
});
*/
