//here's the sIfr
var futura = {  src: 'futuralightcondensed.swf' };
sIFR.activate(futura);

sIFR.replace(futura, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'futuralightcondensed.swf', 
  css: [
		'.sIFR-root {color:#ab3630; letter-spacing: 3.5; }' ]
});

$(document).ready(function(){
	

	$(".menuRollOver").rollover();
	

});


//--
//jQuery elements
$(document).ready(function(){
//toggle hidden form elements
	$("#What_About").change(onSelectChange);
	
	//Hide div w/id extra
    $("#found-other").css("display","none");

	function onSelectChange(){  
		var selected = $("#What_About option:selected");       
		if(selected.val() == 'Other'){  
            //show the hidden field
            $("#found-other").show("slow");
		} else {
			//otherwise, hide it 
            $("#found-other").hide("slow");		
		} 
	}
	
	});//