Hi All,
Hope you had a good Easter / (insert religious festival here) and got lots of work done in your free time!
I am having an issue with Google maps.
Here is the code:
I am just wondering how to make it so that my 'popup' windows display open by default and not just when you click the markers.
Any help much appreciated!

Thanks.
Ass:
Hope you had a good Easter / (insert religious festival here) and got lots of work done in your free time!

I am having an issue with Google maps.
Here is the code:
Code:
<script type="text/javascript">
jQuery(document).ready(function($) {
$("#tb_gmap_<?php echo $id; ?>").gMap({
maptype: "<?php echo $maptype; ?>",
zoom: <?php echo $zoom; ?>,
markers: [{
address: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
popup: <?php echo $popup; ?>,
html: "<img src='<?php echo get_template_directory_uri(); ?>/images/xxx.png' /><br /></h3>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</h3><p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>"
},{
address: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
popup: <?php echo $popup; ?>,
html: "<img src='<?php echo get_template_directory_uri(); ?>/images/xxx.png' /><br /><h3>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</h3><p>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>"
}],
controls: {
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: false,
overviewMapControl: false
}
});
});
</script>
Any help much appreciated!

Thanks.
Ass:
