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

google.setOnLoadCallback(function(){
	
	$.ajaxSetup({async: false});
	$.getScript("inc/curvycorners.js");
	$.ajaxSetup({async: true});
	
	$.ajaxSetup({async: false});
	$.getScript("inc/jquery.colorbox.js");
	$.ajaxSetup({async: true});
		
	curveIt("button1",15);
	curveIt("button2",15);

	$("#content .container").html("<div id=\"ieFix\">"+$("#content .container").html()+"</div>");
	$("#layout").wrap("<div id='layoutOutside'></div>");
	$("#layoutOutside").html("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" id=\"layoutTable\"><tr><td id=\"leftSunset\"><img src=\"images/spacer.png\" width=\"26\"></td><td width=\"100%\">"+$("#layoutOutside").html()+"</td><td id=\"rightSunset\"><img src=\"images/spacer.png\" width=\"26\"></td></tr></table>");
	
	$("a[href*='images']").attr({rel: "allPagePhotos"}).colorbox();
	
	$("#footer .container").prepend("<a href='http://fortmcdowelldestination.com/' target='_blank' style='position:relative;z-index:500;'><img src='images/fmrd.png' width='150' border='0'></a>");
	
});

function curveIt(elementID,theRadius) {

	var settings = {
      tl: { radius: theRadius },
      tr: { radius: theRadius },
      bl: { radius: theRadius },
      br: { radius: theRadius },
      antiAlias: true
    }

    var divObj = document.getElementById(elementID);

    curvyCorners(settings, divObj);
	
}
