// JavaScript Document
$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
			
			$(".googleMap").colorbox({width:"80%", height:"80%", iframe:true});
			$("a[rel='example1']").colorbox({slideshow:true});
			$("a[rel='example2']").colorbox({slideshow:true});
			$("a[rel='example3']").colorbox({slideshow:true});
			$("a[rel='example4']").colorbox({slideshow:true});
			$("a[rel='example5']").colorbox({slideshow:true});
			$("a[rel='example6']").colorbox({slideshow:true});
			$("a[rel='example7']").colorbox({slideshow:true});
			$("a[rel='example8']").colorbox({slideshow:true});
	
			//Example of preserving a JavaScript event for inline calls.
			$("#click").click(function(){ 
				$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
				return false;
			});
		});
