$(function(){


				$("#titulares").easySlider({
											pause:			6000,
											auto: 			true,
											continuous:		true,
											controlsShow:	false,
											vertical:		true,
											prevId: 		'tarr',
											nextId: 		'taba'
										});
				
				$('#titulares_controles #tarr').hover(	function(){	$(this).css('backgroundPosition', '-15px 0px'); },
											function(){	$(this).css('backgroundPosition','0px 0px');	}
										
										).mousedown(function(){	$(this).css('backgroundPosition','0px 0px');	}
										).mouseup(function(){	$(this).css('backgroundPosition','-15px 0px');	});
				
				
				
				$('#titulares_controles #taba').hover(	function(){	$(this).css('backgroundPosition', '-15px -8px'); },
											function(){	$(this).css('backgroundPosition','0px -8px');	}
										).mousedown(function(){	$(this).css('backgroundPosition','0px -8px');	}
										).mouseup(function(){	$(this).css('backgroundPosition','-15px -8px');	});
		   
		   
});