	
	$(document).ready(function() {
		
		// IE6 PNG FIX
		if ($.browser.msie && $.browser.version == '6.0') {
			DD_belatedPNG.fix('*')
		}
		
//		swfobject.embedSWF("myContent.swf", "#homepage-flash-replace-me", "300", "120", "9.0.0");

		
		/* TYPEFACE JS HACKING FTW! */
		if (window._typeface_js) {
		}
		
		$("#subpage-options div").css("cursor", "pointer").click(entireDivClick);
		$("#homepage-options div").css("cursor", "pointer").click(entireDivClick);
		
	});
	



	function entireDivClick (){
		if($(this).find("a").attr("target") == '_blank'){
			window.open($(this).find("a").attr("href"));
		}else{
			window.location=$(this).find("a").attr("href");
		}
		return false;
	}


