$(function(){
	
	/* servicios */
	$('#servicesmenu :first-child a').addClass('selected');
	
	$('#servicesmenu p a').click(function(){
		$(this).parent().parent().find('a').removeClass('selected');
		$(this).addClass('selected');		
	});
	
	$('#coda-slider-1').codaSlider({
 		dynamicArrows: false,
        dynamicTabs: false,
        autoHeight: false
   	});
    
    
    /* lightbox */
	$('.fancybox').fancybox({ 
		'zoomSpeedIn': 0,
		'zoomSpeedOut': 0,					
		'overlayShow': true
	});
	
	$('#contactlist a').fancybox({ 
		'zoomSpeedIn': 0,
		'zoomSpeedOut': 0,
		'frameWidth': 420,				
		'overlayShow': true
	});
	
	$('.veritem').click(function(){
	
			$('.loaded').remove();
			$('.loading').remove();

			var id = $(this).attr('href');
									
			// carga la info del modelo usando el metodo load (ajax)
			$('#loader').append('<img src="../img/loading.gif" alt="Loading..." class="loading"/>');
			$('<div class="loaded" />').load('../item.php?id='+ id +' #itemwrap', function(){			
				$('#item_list').hide();
				$(this).appendTo('#item');
				$('.loading').fadeOut(500, function(){$(this).remove();});
				});
			
			$('#item').show();
			return false;
	});
		
	$('#thumbs a').livequery('click', function(){
		var imgsrc = $(this).attr('href')
	 	$('#foto').children('img').attr({ src: imgsrc });
		return false;
	});
	
	$('#volver').livequery('click', function(){
		$('.loaded').remove();
		$('#item_list').show();
		return false;
	});	
	
					
});
