// JavaScript Document

	//no conflict jquery
	jQuery.noConflict();
	//jquery stuff
	(function($) {	
		
		//set location slide down and up when click
		//set Hover for Other Location Map
//		$('#networkmap').hover(
//			function() {
//				origImage = $(this).attr("src"); 
//				$(this).attr("src", "source/networkmapwBAR1over.png");
//			},
//			function() {
//				$(this).attr("src", origImage);
//			}).toggle(
//			function() {
//				$('#locationmenulayer').slideDown("slow");
//			},
//			function() {
//				$('#locationmenulayer').slideUp("slow");//css('display', 'none');
//			}
//		);
		
		$('input#submit').hover(
			function() {
				origImage = $(this).attr("src"); 
				$(this).attr("src", "source/submit-inquiry-over.gif");
			},
			function() {
				$(this).attr("src", origImage);
			});
		
	})(jQuery);
