// UTF8 ñó
// Funciones para briken.com.mx
// (c) 2009 Ing. Octavio Velasco Sevilla | Accend Consulting SC | http://www.accend.com.mx


// GOOGLE MAPS
  function mapa_exhibicion() {
    var latlng = new google.maps.LatLng(20.667441,-103.368731);
    var myOptions = {
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("mapa_exhibicion"), myOptions);
	
	var myLatLng = new google.maps.LatLng(20.666500,-103.367600);
	var marker = new google.maps.Marker({
      position: myLatLng, 
      map: map, 
      title:"Sala de Exhibición"
  	});   

  }

  function mapa_fabrica() {
    var latlng = new google.maps.LatLng(20.611999,-103.425615);
    var myOptions = {
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("mapa_fabrica"), myOptions);
	
	var myLatLng = new google.maps.LatLng(20.607771,-103.426784);
	var marker = new google.maps.Marker({
      position: myLatLng, 
      map: map, 
      title:"Fábrica de Closets y Cocinas"
  	});   

  }
 
// FORMA DE COTIZACION
  function cotizacion() {
		$(".closets").click(function() {
			if($("#closets").is(":checked")) {
				$("#closets_habitaciones_label").show();
				$("#closets_habitaciones").focus();
			} else { 
				$("#closets_habitaciones_label").hide();
			}
		});
		$(".cocinas").click(function() {
			if($("#cocinas").is(":checked")) {
				$("#cocinas_area_label").show();
				$("#cocinas_area").focus();
			} else {
				$("#cocinas_area_label").hide();
			}
		});
	}

// Briken Ecologico
$(document).ready(function() {
	$("a#ft-briken").fancybox();
});