
<!--
$(document).ready(function(){

	$("ul.navigation-primary").superfish();
	
	$(".btn-donation").hover(
      function () {
        $(this).attr("src","images/button-make-a-donation-on.gif");
      }, 
      function () {
        $(this).attr("src","images/button-make-a-donation.gif");
      }
    );
	
	$(".image-button-arrow").hover(
      function () {
        $(this).attr("src","images/button-arrow-right-on.gif");
      }, 
      function () {
        $(this).attr("src","images/button-arrow-right.gif");
      }
    );
	
	$("#q").focus(function() { 
		if(this.value == 'SEARCH'){this.value='';}
	});
	$("#q").blur(function() { 
		if(this.value == ''){this.value='SEARCH';}
	});
	
	$('a.href-external').click(function(){
	  window.open($(this).attr('href'));
	  return false;
	});
	
	$('.content-hidden-toggle').click(function(){
	  $(this).parent().parent().find('.content-hidden').slideToggle('fast');
	});
	
});
-->
