		PEPS = {};
		
		PEPS.rollover =
		{
		   init: function()
		   {
		      this.preload();
		     
		      $(".ro").hover(
		         function () { $(this).attr( 'src', PEPS.rollover.newimage($(this).attr('src')) ); },
		         function () { $(this).attr( 'src', PEPS.rollover.oldimage($(this).attr('src')) ); }
		      );
		   },
		
		   preload: function()
		   {
		      $(window).bind('load', function() {
		         $('.ro').each( function( key, elm ) { $('<img>').attr( 'src', PEPS.rollover.newimage( $(this).attr('src') ) ); });
		      });
		   },
		   
		   newimage: function( src )
		   {
		      return src.substring( 0, src.search(/(\.[a-z]+)$/) ) + '_mo' + src.match(/(\.[a-z]+)$/)[0];
		   },
		
		   oldimage: function( src )
		   {
		      return src.replace(/_mo\./, '.');
		   }
		};
		
		remote = {};
		
		remote.rollover =
		{
		  init: function()
		   {
		      this.preload();
					$(".rMo").hover(
		         function () { 
						 				rId = $(this).attr('rmo');		 			
									 	$(".rmo"+rId).attr( 'src', remote.rollover.newimage($(".rmo"+rId).attr('src')) );   
								},
		         function () 
						 						{ 
						 				rId = $(this).attr('rmo');
									 	$(".rmo"+rId).attr( 'src', remote.rollover.oldimage($(".rmo"+rId).attr('src')) ); 
								});				
		   },	
			preload: function()
		   {
		      $(window).bind('load', function() {
		         $('.ro').each( function( key, elm ) { $('<img>').attr( 'src', remote.rollover.newimage( $(this).attr('src') ) ); });
		      });
		   },
		   
		  newimage: function( src )
		   {
		      return src.substring( 0, src.search(/(\.[a-z]+)$/) ) + '_mo' + src.match(/(\.[a-z]+)$/)[0];
		   },
		
		  oldimage: function( src )
		   {
		      return src.replace(/_mo\./, '.');
		   }
			 	   
		};
