function pdxMap() {
    var myLatlng = new google.maps.LatLng(45.564064, -122.619438);
    var myOptions = {
	zoom: 10,
	center: myLatlng,
	mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("info-box-1"), myOptions);
}
jQuery(document).ready(function($) {
    pdxMap();
    str = '<!-- Slideshow HTML -->' +
    '<div id="slideshow">' +
    '  <div id="slidesContainer">' +
    '    <div class="slide">' +
    '      <!-- Content for slide 1 goes here -->' +
    '    </div>' +
    '    <div class="slide">' +
    '      <!-- Content for slide 2 goes here. -->' +
    '    </div>' +
    '    <div class="slide">' +
    '      <!-- Content for slide 3 goes here. -->' +
    '    </div>' +
    '    <div class="slide">' +
    '      <!-- Content for slide 4 goes here. -->' +
    '    </div>' +
    '  </div>' +
    '</div>' +
    '<!-- Slideshow HTML -->';
    //$("#info-box-3").html(str);
});