// JavaScript Document

			$(document).ready(function(){
				
				$(".inline").colorbox({width:"480px", maxHeight:"600px", maxWidth:"700px", inline:true});
				$("a[rel='slideshow']").colorbox({slideshow:true, width:"auto", height:"auto", maxHeight:"600px", maxWidth:"700px"});
				$(".iframe").colorbox({width:"80%", height:"80%", iframe:true});
				$("a[rel='image']").colorbox();

				
			});
