$(document).ready(function() {
	// Cufon-ize headings
	if (typeof Cufon=='function') {
		Cufon.replace('#slider .title,#slider .name');
	}
	
	// look for anchors with href and rel="external", and add target="_blank" to them so that they open in a new window
	// from http://articles.sitepoint.com/article/standards-compliant-world/3
	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";
		}
	}
	
	// initialize any Google maps present
	if (window.map_initialize) map_initialize();
});


