// Mapa
$(document).ready(function() {
	//map 458x300
	var map = '<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=+MEGA+Sistemas+Corporativos%E2%80%8E&amp;sll=-23.008964,-47.05719&amp;sspn=1.602756,2.90863&amp;ie=UTF8&amp;hq=MEGA+Sistemas+Corporativos%E2%80%8E&amp;hnear=&amp;ll=-23.20601,-47.279663&amp;spn=1.514584,2.510376&amp;z=8&amp;output=embed"></iframe>';

	//fullMap 918x420
	var fullMap = '<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=+MEGA+Sistemas+Corporativos%E2%80%8E&amp;sll=-23.008964,-47.05719&amp;sspn=1.602756,2.90863&amp;ie=UTF8&amp;hq=MEGA+Sistemas+Corporativos%E2%80%8E&amp;hnear=&amp;ll=-22.543001,-47.131348&amp;spn=2.130744,5.158081&amp;z=8&amp;iwloc=A&amp;output=embed"></iframe>';
	
	// carrega mapa inicial
	$("#map").html(map);
	
	
	$("#zoomMap").click(function(evt){
		evt.preventDefault();
		
		$(this).hide();
		$("#closeMap").show();
		
		$("#toggle").removeClass("container-AB").addClass("container-ABC");
		$(".container-BC").hide();
		
		$(".container-ABC .grid3, .container-ABC .title-section").hide();
		
		$("#map").removeClass("small").addClass("full").html(fullMap);
		$("#map").parent().removeClass("grid6").addClass("grid12");
	});
	
	$("#closeMap").click(function(evt){
		evt.preventDefault();
		
		$(this).hide();
		$("#zoomMap").show();
		
		$("#toggle").removeClass("container-ABC").addClass("container-AB");
		$(".container-BC").show();
		
		$(".container-AB .grid3, .container-AB .title-section").show();
		
		
		$("#map").removeClass("full").addClass("small").html(map);
		$("#map").parent().removeClass("grid12").addClass("grid6");
	});		
});
