
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='full-thumb']").colorbox();
				$("a[rel='int-thumbs']").colorbox();
				$("a[rel='ext-thumbs']").colorbox();
				
				$(".iframe-pop").colorbox({width:"525", height:"450", iframe:true});
				
			/*	
				$(".map-toggle").html("Show Map");
      			$("#lg-img-wrap").show();
      			$("#bldg-wrap").hide();
			*/
			
				$(".map-toggle").click(function () { 
      				if ($(".map-toggle").html() == "Show Map")
      				{
      					$(".map-toggle").html("Show Photo");
      					$("#lg-img-wrap").hide();
      					$("#bldg-wrap").show();
      					//$("#bldg-cont-frame").attr('src', 'http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=356+Collins+Blvd+Orrville,+OH+44667&amp;sll=37.0625,-95.677068&amp;sspn=56.856075,89.824219&amp;ie=UTF8&amp;ll=40.866341,-81.756907&amp;spn=0.018888,0.033131&amp;z=13&amp;output=embed');
      				}else{
      					$(".map-toggle").html("Show Map");
      					$("#lg-img-wrap").show();
      					$("#bldg-wrap").hide();
      					
      				}
      				
    			});

			});
