/***********************************************************************************************************************
DOCUMENT: /system/templates/includes/javascript.js
DEVELOPED BY: Ryan Stemkoski
COMPANY: Zipline Interactive
EMAIL: ryan@gozipline.com
PHONE: 509-321-2849
DATE: 12/06/2009
DESCRIPTION: This document contains general javascript functionality used within the site.  Requires jQuery library
************************************************************************************************************************/

$(document).ready(function() {

	/*******************************************************************************************************************
	// POP CONTACT WINDOW
	*******************************************************************************************************************/
	$("img[rel]").overlay();
	
	/*******************************************************************************************************************
	// DIRECTIONS FUNCTION
	*******************************************************************************************************************/
    var map;
    var directionsPanel;
    var directions;

    function initialize(to,from) {
      //map = new GMap2(document.getElementById("map_canvas"));
      //map.setCenter(new GLatLng(42.351505,-71.094455), 15);
      directionsPanel = document.getElementById("route");
      directions = new GDirections("", directionsPanel);
      directions.load("from: " + from + " to: " + to);
    }

	/*******************************************************************************************************************
	// ONSUBMIT SHOW CALCULATE DIRECTIONS
	*******************************************************************************************************************/
	$('#submit').click(function() {
		var to = $('#directions_location').val();
		var from = $('#directions_address').val();
		initialize(to,from);							
	});

});
