// JavaScript Document

$(document).ready(function(){
	
	//to make the image display
	$("img#story").show();
	
	//image rollover for the donate image
	$("img#donate").hover(function () {
  		$(this).attr({src : "images/donate-ro.gif"});
  	}, function () {
  		$(this).attr({src : "images/donate.gif"});  
    });

	//image rollover for the volunteer image
	$("img#volunteer").hover(function () {
  		$(this).attr({src : "images/volunteer-ro.gif"});
  	}, function () {
  		$(this).attr({src : "images/volunteer.gif"});  
    });
	
	//image rollover for the volunteer image
	$("div.ourstory").hover(function () {
		if($("img#story").css("display") !== "none"){
			$("img#story").fadeOut(1000);
			$("div.ourstory > blockquote").fadeIn(2700);
		}
  	}, function () {
  		$("img#story").fadeIn('slow');
		$("div.ourstory > blockquote").fadeOut(500);
    });
	
	
});