var $j = jQuery.noConflict();

jQuery(document).ready(function($){
 
 
 
	$('.simg').each( function() {
	
		imagenes = $(this).attr('name' ).split('|') ;		
		
		if (imagenes.length == 1 ) {
	
			$(this).html( '<img src="/img/' + imagenes[0] + '" />' );
		} else {
		
		
			if (typeof SeccionActual != "undefined"  &&  $(this).attr('id') == ('mSeccion' + SeccionActual ) )  {
			
				imagenes[0] = imagenes[1] ;
				$(this).attr('name', imagenes.join('|') );
			}
			$(this).html( '<img src="/img/' + imagenes[0] + '"  rel="' + $(this).attr('name' ) + '"/>' );
			$( this ).hover( function() {
				var imagen = $('img', this ) ;
 				
				if ( imagen.attr('estado') != 1 ) {
					imagen.attr( 'estado', 1 ) ;
					imagen.attr('src', '/img/' +imagen.attr('rel' ).split('|')[1] );
				}
			
			}, 
			function () {
				var imagen = $('img', this ) ;
   				if ( imagen.attr('estado') != 0 ) {
					imagen.attr( 'estado', 0 ) ;
					imagen.attr('src', '/img/' + imagen.attr('rel' ).split('|')[0] );
				}
			
			} );
		}
	
	} );
 
	
		
	
}) ;
