$(document).ready(function(){
				$("a[rel='example1']").colorbox();
				$("a[rel='marine']").colorbox();
				$("a[rel='marine2']").colorbox();
				$("a[rel='marine25']").colorbox();
				$("a[rel='marine3']").colorbox();
				$("a[rel='marine4']").colorbox();
				$("a[rel='example2']").colorbox({transition:"fade"});
				$("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});
				$("a[rel='example4']").colorbox({slideshow:true});
				$(".single").colorbox({}, function(){
					alert('Howdy, this is an example callback.');
				});
				$(".colorbox").colorbox();
				$(".iframe_vid").colorbox({width:"700px", height:"394px", iframe:true});
				$(".iframe").colorbox({width:"520px", height:"520px", iframe:true});
				$(".iframe_reg").colorbox({width:"520px", height:"465px", iframe:true});
				$(".iframe_job").colorbox({width:"520px", height:"425px", iframe:true});
				$(".iframe_friend").colorbox({width:"280px", height:"335px", iframe:true});
				$("#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;
				});
			});
