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

google.setOnLoadCallback(function(){
	
	$.ajaxSetup({async: false});
	$.getScript("inc/jquery.colorbox.js");
	$.ajaxSetup({async: true});
	
	$("#firewoodLink").colorbox({ width:"80%", height:"80%", iframe:true });
	$(".floatbox").colorbox();
	
});