			var jQT = new $.jQTouch({
			icon: './images/beans.png',
			addGlossToIcon: false,
			startupScreen: './images/BeanArrowUp.png',
			statusBar: 'black',
			preloadImages: []
			//preloadImages: Pass an array of image paths to load them before page loads. Ex: ['images/link_over.png', 'images/link_select.png']
			})
			
        $(function(){
                function setDisplay(text) {
                    $('.info').empty().append(text)
                }
                // We pass "updateLocation" a callback function,
                // to run once we have the coordinates.
                // We also set it to a variable, so we can know
                // right away if it's working or not
                var lookup = jQT.updateLocation(function(coords){
                    if (coords) {
                        setDisplay('Latitude: ' + coords.latitude + '<br />Longitude: ' + coords.longitude);
                    } else {
                        setDisplay('Device not capable of geo-location.');
                    }
                });
                if (lookup) {
                    setDisplay('Looking up location&hellip;');
                }
            });
