var jj = jQuery.noConflict();
jj(document).ready(function(){
	jj('.ul li').hover(
	function(){
		jj(this).parent().find('.selected').removeClass('selected');
		jj(this).addClass('selected');
		var id = jj(this).attr('id');
		var posicion = jj('.contenido_texto').attr('position');
		
		if(id=='uno'){
			if(posicion=='dos'){
				jj('#wraper').animate({left: '+=340'}, 500);
			}
			if(posicion=='tres'){
				jj('#wraper').animate({left: '+=680'}, 500);
			}
			if(posicion=='cuatro'){
				jj('#wraper').animate({left: '+=1020'}, 500);
			}
			jj('.contenido_texto').attr('position','uno');
		}
		//
		if(id=='dos'){
			if(posicion=='uno'){
				jj('#wraper').animate({left: '-=340'}, 500);
			}
			if(posicion=='tres'){
				jj('#wraper').animate({left: '+=340'}, 500);
			}
			if(posicion=='cuatro'){
				jj('#wraper').animate({left: '+=680'}, 500);
			}
			jj('.contenido_texto').attr('position','dos');
		}
		//
		if(id=='tres'){
			if(posicion=='uno'){
				jj('#wraper').animate({left: '-=680'}, 500);
			}
			if(posicion=='dos'){
				jj('#wraper').animate({left: '-=340'}, 500);
			}
			if(posicion=='cuatro'){
				jj('#wraper').animate({left: '+=340'}, 500);
			}
			jj('.contenido_texto').attr('position','tres');
		}
		//
		if(id=='cuatro'){
			if(posicion=='uno'){
				jj('#wraper').animate({left: '-=1020'}, 500);
			}
			if(posicion=='dos'){
				jj('#wraper').animate({left: '-=680'}, 500);
			}
			if(posicion=='tres'){
				jj('#wraper').animate({left: '-=340'}, 500);
			}
			jj('.contenido_texto').attr('position','cuatro');
		}
	},
	function(){
		//Nada
	}
	);
});
