google.load("jquery","1.3.2");

google.setOnLoadCallback(function(){
	
	$.ajaxSetup({async: false});
	$.getScript("inc/jquery.colorbox.js");
	$.ajaxSetup({async: true});
	
	$(".lightwindow").colorbox();
	$(".cbWindow").colorbox({iframe:true, width:580, height:440});
	
});