// JavaScript Document




jQuery(document).ready(function() {
 
$("img.imgover").hover(
function()
{
this.src = this.src.replace("_off","_on");
},
function()
{
this.src = this.src.replace("_on","_off");
}
);

$('#featured_promo h2').before('<div id="nav">');

$('#featured').cycle({ 
    fx:    'fade', 
    speed:  1500 ,
	timeout:       11000,
	random:        true,
	pager:  '#nav'
 });


// $( '.donate') .everyTime ( 1000, function (){

//$('.donate').delay(2000).animate({backgroundColor: '#DE8538'}, 'slow').animate({backgroundColor: '#9A8F86'}, 'slow').delay(2000);
	
	
	
//});


//$(".donate").mouseover(function(){
//               $(".donate").stop(true).stopTime();
//			   $('.donate').animate({backgroundColor: '#DE8538'});
//          });

//$(".donate").mouseout(function(){
	//	$('.donate').animate({backgroundColor: '#9A8F86'});	
			   

 //         });



 
});



