$(document).ready(function() {
	if (parseInt($.browser.version) < 7 && $.browser.msie == true) { 
//		$("#home #splash img").attr("src","/images/img-splash.gif");
		$("#imgMic").attr("src","/images/img-microphone.gif");
	} else {
	}

	$(".more a").fancybox({
		overlayShow			:	true,
		overlayOpacity		:	0.4,
		overlayColor		:	'#000',
		titleShow			:	false
	});
	$("#austin-banner a").fancybox({
		overlayShow			:	true,
		overlayOpacity		:	0.4,
		overlayColor		:	'#000',
		padding             :   0, 
		titleShow			:	false, 
		width               :   560
	});

	$("a[rel*=external]").click( function() {
		window.open(this.href);
		return false;
	});
	
	Cufon.replace('#nav li', {
		textShadow: '0px 1px white', 
		hover: {
			textShadow: '0px 1px white',
			color: '-linear-gradient(black, #999)'
		}
	});
	Cufon.replace('h2');
});

