// JavaScript Document

// ブロックスＣＭＳ管理画面のlightBOX効果

		$(document).ready(function(){
			//Examples of how to assign the ColorBox event to elements
			$("a[rel='bks_lightbox']").colorbox();
			$("a[rel='bks_iframe']").colorbox({width:"80%", height:"80%", iframe:true});
			$("a[rel='bksdb_popup']").colorbox({width:"600px", height:"300px", iframe:true, scrolling:false});
			
			//Example of preserving a JavaScript event for inline calls.
			$("#click").click(function(){ 
				$('#click').css({"background-color":"#000", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
				return false;
			});
		});
