Try new my startup: Digital inventions journal - CubeCamp.com

$.goMap() is jQuery v1.11.1 plugin using Google Maps v3.

New version 1.3.3 (2014.11.27) release notes

Simple example

<script type="text/javascript" src="https://maps.google.com/maps/api/js?key=#API_KEY#"></script>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script> 
<script type="text/javascript" src="js/jquery.gomap-1.3.3.min.js"></script>
Style
<style>
/* Map */
#map {
	width:700px;
	height:400px;
}
/* Info window size (optional) */
.gomapMarker {
	display: block;
	width: 150px;
	height: auto;
}
</style>
jQuery
$(function() {
	$("#map").goMap();
});