jQuery(document).ready(function($) {
	
	if($("a.iframe").length != 0){
		$("a.iframe").fancybox();
	}

	if($(".maps").length != 0){
		$(".maps").gmap3({
			action: 'init',
			options: {
				center: [33.646653,-111.902082],
				zoom: 15
			}
		},
		{
			action: 'addMarker',
			latLng: [33.646653,-111.902082]
		});
	}
	
});
