// Prodac custom javascript

/* Google Maps */

	function initialize() {
    var latlng = new google.maps.LatLng(51.246014,4.306641);
    var myOptions = {
      zoom: 12,
      center: latlng,
	  disableDefaultUI: true,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
	  var image = '../img/pin.png';
	  var myLatLng = new google.maps.LatLng(51.246014,4.306641);
	  var beachMarker = new google.maps.Marker({
		  position: myLatLng,
		  map: map,
		  icon: image
	  });
  }		  	  

$(document).ready(function() {

	if($(".fancy")){
		$(".fancy").fancybox({
			'width'				: '90%',
			'height'			: '90%',
			'autoScale'			: true
		});
	}//if

	if($(".ifr")){
		$(".ifr").fancybox({
			'width'				: '90%',
			'height'			: '90%',
			'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
	}//if
});

