//
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='example1']").colorbox({transition:"elastic", width:"830", height:"95%", close:'CLOSE', scalePhotos:false, current:"", opacity:0.87});
				$("a[rel='example2']").colorbox({transition:"fade"});
				$("a[rel='example3']").colorbox({transition:"elastic", width:"830", height:"95%", close:'CLOSE', scalePhotos:false, current:"", opacity:0.87});
				$("a[rel='example4']").colorbox({slideshow:true});
				$(".single").colorbox({}, function(){
					alert('Howdy, this is an example callback.');
				});
				$(".colorbox").colorbox({transition:"elastic", width:"860", height:"700", close:'CLOSE', scalePhotos:false, current:"", opacity:0.87});
				$(".pdf").colorbox({width:"93%", height:"98%", iframe:true, close:"(CLOSE)"});
				$(".vtour").colorbox({width:"1100", height:"98%", iframe:true, close:"close", scalePhotos:false});
				$(".map").colorbox({width:"90%", height:"95%", iframe:true, close:"close"});
				$(".inline").colorbox({width:"50%", inline:true, href:"#inline_example1"});
				
				//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;
				});
			});
//
