SSleftnav = {};
  
  SSleftnav.rollover =
  {
  
    init: function()
	{
	
	  $("#join_the_herd").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 	 

	  $("#quick_links a img").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 		  
		
		$("#quick_linkshome a img").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 		
		
	  $("#donate_now").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 		  
		
	 $("#home_left a img ").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 	 
		
		$("#aboutus_learnmore a img ").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 		
		
		$("#contactsubmit").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 			
		
		$(".view_terms").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 			
		
		$("#commentform .button").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 	  

		
	},
	newimage: function( src )
	{
	  return src.replace( ".png","_1.png" );
	
	},
	oldimage: function( src )
	{
	
	  return src.replace( "_1.png",".png" );	
	
	}

  };
  
SSnav = {};
  
  SSnav.rollover =
  {
  
    init: function()
	{
	
	  $("#join_the_herd").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSnav.rollover.oldimage( $(this).attr('src') ) ); 
		} ); 	 
		
	},
	newimage: function( src )
	{
	  return src.replace( "_off","_on" );
	
	},
	oldimage: function( src )
	{
	
	  return src.replace( "_on","_off" );	
	
	}

  };  
