// JavaScript Document
var mapCreated = false;
jQuery(function( $ ){
	//subnav for work
	var showContent = "";
	var clickedField ="";
	//init google maps
	$('.tbtn').click(function(){
		if ($(this).attr('href')=='#')
		{
			$('#contactHolder').fadeOut(100);
			//show the stuff
			$('#headlineHolder img').show();
			$('#mainright p').show();
			showContent = "";
		}else{
			$('#contactHolder').fadeOut(2);
			$('#headlineHolder img').hide();
			$('#mainright p').hide();
			//show content
			showContent = $(this).parent().find('.contactInfoHidden').html();
			$('#locationText').html(showContent);
			$('#contactHolder').fadeIn(500);
			if (mapCreated == false)
			{
				initialize();
			}
			//alert($(this).attr('title'));
			clickedField = $(this).attr('title');
			//alert($('#adr'+clickedField).val());
			addressString = $('#adr'+clickedField).val();
			codeAddress(addressString);
		}
		//swap out the button
		$('.clicktbtn').removeClass(' clicktbtn');
		$(this).addClass(' clicktbtn');
		return false;
	});
	
});