$(function(){
	// dropdown
	$("#btns > li").hover(
		function(){
			$(this).addClass("hvractive");
		},
		function(){
			$(this).removeClass("hvractive");
		}
	);

	// rel externals into new windows
	$("a[rel=external]").each(function(){
		$(this).attr("target","_blank");
	});

	// sIFR
	if(typeof sIFR == "function"){
		sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:r+"optima_bold.swf", sColor:"#006e8a", sWmode:"transparent"}));
	};
});