/**
 * @author david
 */
var fondo1 = new Image();
fondo1.src = "http://www.samanthacatering.com/pruebas/pagina/fotos/flecha_abajo_press.png";
var fondo2 = new Image();
fondo2.src = "http://www.samanthacatering.com/pruebas/pagina/fotos/flecha_arriba_press.png";
jQuery(function( $ ){
	$('a.atras').click(function(){
		var arr = $(this).parents().find('.sliders');
		arr.scrollTo(0,800);
	});
	$('.contenedor').each(function(i){
		$(this).find('ul.resumen2 li').each(function(j){
			$(this).click(function(){
				//alert(i +"-"+j);
				$('#content_'+i+'.contenedor .sliders').scrollTo('.secciones:eq('+j+')',800);
			});
		});
	});
	flechaAbajo = $('.flecha_abajo');
	flechaAbajo.mousehold(function(){
		$(this).css('background','url('+fondo1.src+') no-repeat center');
		$(this).parents().find('.sliders').scrollTo('+=10px', 0);
	});
	flechaAbajo.mouseup(function(){
		$(this).css('background','url(http://www.samanthacatering.com/pruebas/pagina/fotos/flecha_abajo.png) no-repeat center');
	});
	flechaArriba = $('.flecha_arriba');
	flechaArriba.mousehold(function(){
		$(this).css('background','url('+fondo2.src+') no-repeat center');
		$(this).parents().find('.sliders').scrollTo('-=10px', 0);
	});
	flechaArriba.mouseup(function(){
		$(this).css('background','url(http://www.samanthacatering.com/pruebas/pagina/fotos/flecha_arriba.png) no-repeat center');
	});
}); 
