$(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:"525px", height:"335px", iframe:true});
				$(".iframe_down").colorbox({width:"685px", height:"510px", iframe:true});
				$(".iframe_game_gen").colorbox({width:"643px", height:"470px", iframe:true});
				$(".iframe_game_gen_s").colorbox({width:"450px", height:"370px", iframe:true});
				$(".iframe_game_gen_l").colorbox({width:"540px", height:"520px", iframe:true});
				$(".iframe_game_gen_c").colorbox({width:"683px", height:"550px", iframe:true});
				$(".iframe_game_gen_r").colorbox({width:"713px", height:"500px", iframe:true});
				$(".iframe_game_gen_p").colorbox({width:"620px", height:"505px", iframe:true});
				$(".iframe_game_gen_n").colorbox({width:"743px", height:"580px", 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;
				});
			});
