$(document).ready(function(){
	var activeEl = $('#menu li a.active');
	$('#menu li').hover(
		function(){
			$(activeEl).removeClass('active');
		},
		function(){
			$(activeEl).addClass('active');
		}
	);
	$('#footer').setFooterHeight();
});
var origFooterHeight = 0;
$.fn.setFooterHeight = function(loaded){
	var currentFooterHeight = 0;
	if(!loaded) {
		origFooterHeight = $('#footer').height();
		currentFooterHeight = $(window).height() - $('#footer').offset().top;
		if(currentFooterHeight > origFooterHeight) {
			$('#footer').css({'height' : currentFooterHeight+'px' });
		}
		$(window).resize(function(){
			$(this).setFooterHeight(!loaded);
		});
	}
	else {
		currentFooterHeight = $(window).height() - $('#footer').offset().top;
		if(currentFooterHeight > origFooterHeight) {
			$('#footer').css({'height' : currentFooterHeight+'px' });
		}
	}
}

// GOOGLE MAP
function initialize() {
	var myLatlng = new google.maps.LatLng(26.100, -80.129);
	var myOptions = {
	  zoom: 15,
	  center: new google.maps.LatLng(26.1055, -80.129),
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("gmap"), myOptions);

	
	var contentString = '<div id="gpopup">' +
							'<h2>Clearsight South Opticians</h2>' +
							'<p>' +
								'1378 Southeast 17th Street <br>'+
								'Fort Lauderdale, FL 33316-1726 <br>' +
								'Phone: (954) 761-3937 <br>' +
								'Fax (954) 779-7354 <br>' +
								'Email: <a href=\"#\">sales@clearsight.net</a>' +
							'</p>' +
							'<img src=\"css/images/popup-img.jpg\" alt=\"clearsight pic\" width=\"90\" height=\"51\" />' +
							'<div class="cl">&nbsp;</div>' +
						'</div>';
	var infowindow = new google.maps.InfoWindow({
    	content: contentString
	});

	var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      title:"Clearsight Opticians"
  	});
  	
  	infowindow.open(map,marker);
  	google.maps.event.addListener(marker, 'click', function() {
 		infowindow.open(map,marker);
	});
}

