/*////////////////////////////////////////////////////////////
JavaScript Code Library
Developed by GrafX Design Division Pty Ltd
http://www.grafx.com.au
////////////////////////////////////////////////////////////*/




// Get the hacked stylesheet
document.write('<style type="text/css">@import url("http://ymcasydney.org/charity-golf-day/styles/hacks.css");</style>');




// XHTML External Link Script
$(document).ready(function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
			anchor.target = "_blank";
		}
	}
});




// ColorBox Popup
$(document).ready(function(){
	// $(".form").colorbox();
	$(".form").colorbox({width:"500px", height:"400px", scrolling:false, opacity:0.75, iframe:true});

	$("#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;
	});
});
