function insertarGaleria(contenedor, img1, img2, img3){
	$('#'+ contenedor).css({
		'width':		'660px',
		'height':		'310px',
		'background':	'white',
		'position':		'relative',
		'overflow':		'hidden'
	});
	$('<img/>',{
		id:		'imagen_galeria_'+contenedor+'1',
		src:	'http://www.hotelchurrut.com/cache/timthumb.php?src='+img1+'&h=310&w=500&zc=1&dir=imagenes&cropfrom=middle',
		style:	'cursor: pointer; width: 500px; height: 310px; position: absolute; top:0; left: 0; border-left: 2px solid black; border-right: 2px solid black; z-index: 3;'
	}).appendTo($('#'+contenedor));
	$('#imagen_galeria_'+contenedor+'1').bind('click', function(){
		if ($('#imagen_galeria_'+contenedor+'1').css('left') != '0') {
			$('#imagen_galeria_'+contenedor+'1').animate({
				'left': '0'
			});
		}
		
		if ($('#imagen_galeria_'+contenedor+'2').css('left') != '78px') {
			$('#imagen_galeria_'+contenedor+'2').animate({
				'left': '78px'
			});
		}
	});
	
	$('<img/>',{
		id:		'imagen_galeria_'+contenedor+'2',
		src:	'http://www.hotelchurrut.com/cache/timthumb.php?src='+img2+'&h=310&w=500&zc=1&dir=imagenes&cropfrom=middle',
		style:	'cursor: pointer; width: 500px; height: 310px; position: absolute; top:0; left: 78px; border-left: 2px solid black; border-right: 2px solid black; z-index: 2;'
	}).appendTo($('#'+contenedor));
	$('#imagen_galeria_'+contenedor+'2').bind('click', function(){
		if ($('#imagen_galeria_'+contenedor+'1').css('left') != '-424px') {
			$('#imagen_galeria_'+contenedor+'1').animate({
				'left': '-424px'
			});
		}
		
		if ($('#imagen_galeria_'+contenedor+'2').css('left') != '78px') {
			$('#imagen_galeria_'+contenedor+'2').animate({
				'left': '78px'
			});
		}
	});
	
	$('<img/>',{
		id:		'imagen_galeria_'+contenedor+'3',
		src:	'http://www.hotelchurrut.com/cache/timthumb.php?src='+img3+'&h=310&w=500&zc=1&dir=imagenes&cropfrom=middle',
		style:	'cursor: pointer; width: 500px; height: 310px; position: absolute; top:0; left: 156px; border-left: 2px solid black; border-right: 2px solid black; z-index: 1;'
	}).appendTo($('#'+contenedor));
	$('#imagen_galeria_'+contenedor+'3').bind('click', function(){
		if ($('#imagen_galeria_'+contenedor+'1').css('left') != '-424px') {
			$('#imagen_galeria_'+contenedor+'1').animate({
				'left': '-424px'
			});
		}
		
		if ($('#imagen_galeria_'+contenedor+'2').css('left') != '-346px') {
			$('#imagen_galeria_'+contenedor+'2').animate({
				'left': '-346px'
			});
		}
	});
}

function insertarGaleriaHotel(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/el_hotel/inicio02.jpg',
		'http://www.hotelchurrut.com/images/el_hotel/02.jpg',
		'http://www.hotelchurrut.com/images/el_hotel/6691.jpg');
}

function insertarGaleriaHabitaciones(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/habitaciones/6549.jpg',
		'http://www.hotelchurrut.com/images/habitaciones/P1000267.JPG',
		'http://www.hotelchurrut.com/images/habitaciones/03.jpg');
}

function insertarGaleriaRestaurante(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/restaurante/IMG_1778.JPG',
		'http://www.hotelchurrut.com/images/restaurante/salon04.jpg',
		'http://www.hotelchurrut.com/images/restaurante/03.jpg');
}

function insertarGaleriaServicios(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/servicios/01.jpg',
		'http://www.hotelchurrut.com/images/servicios/6725.jpg',
		'http://www.hotelchurrut.com/images/servicios/6338.jpg');
}

function insertarGaleriaReuniones(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/reuniones/DSC07416.JPG',
		'http://www.hotelchurrut.com/images/reuniones/DSC07438.JPG',
		'http://www.hotelchurrut.com/images/reuniones/03.jpg');
}

function insertarGaleriaActividades(contenedor){
	insertarGaleria(contenedor,
		'http://www.hotelchurrut.com/images/actividades/act01.jpg',
		'http://www.hotelchurrut.com/images/actividades/act02.jpg',
		'http://www.hotelchurrut.com/images/actividades/act03.jpg');
}
