$(document).ready(function() {                

  $("#other_hearsay").slideUp();
  $("select#how_did_you_hear").change(function(){
    var selectedValue = $(this).find("option:selected").attr('value');
    if(selectedValue == "Other"){
      $("#other_hearsay").slideDown('fast');
    } else {
      $("#other_hearsay").slideUp('fast');
    }
  });
	
	// Open links in new window when rel="external" is applyed to a tag
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	
	// Flash Banner
	$('.banner ul').cycle();

	
});