SSleftnav = {};
  
  SSleftnav.rollover =
  {
  
    init: function()
	{
	
	  $("img.learnmore").hover( 
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.newimage( $(this).attr('src') ) ); 
		},
		function() 
		{ 
		  $(this).attr( 'src', SSleftnav.rollover.oldimage( $(this).attr('src') ) ); 
		} );	  
		
		$(".learnmoreyellow").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( "_off.","_on." );
	
	},
	oldimage: function( src )
	{
	
	  return src.replace( "_on.","_off." );	
	
	}

  };  
