// JavaScript Document
    $(document).ready(function(){
//		$(".overlay1").colorbox({opacity: 0.5, width:"370px", height:"300px", iframe:true});
		$(".overlay1").colorbox({opacity: 0.5, width:"450px", height:"300px", overlayClose: false});
		$(".overlay2").colorbox({opacity: 0.5, width:"450px", height:"280px", overlayClose: false});
		$(".overlay3").colorbox({opacity: 0.5, width:"450px", height:"220px", overlayClose: false});		
        $("#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;
        });
    });
