$(function(){
		$('#slides').slides({
			preload: true,
			preloadImage: '/img/loading.gif',
			play: 5000,
			pause: 2500,
			hoverPause: true,
			generatePagination: false
		});
	});
/*
stepcarousel.setup({
	galleryid: 'carousel', //id of carousel DIV
	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel', //class of panel DIVs each holding content
	autostep: {enable:true, moveby:1, pause:3000},
	panelbehavior: {speed:600, wraparound:true, persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['/img/flechaRight.png', 10, 170], rightnav: ['/img/flechaLeft.png', -40, 170]},
	contenttype: ['external'] //content setting ['inline'] or ['external', 'path_to_external_file']
});
*/
///
/// Recarga en un div las imágenes de una galería 
///
function CargaGaleria( nIdCategoria )
{
	var cParameters = 'IdCategoria=' + nIdCategoria;
	AjaxRequest( '../obtenerGaleria.php' , cParameters , CallBackCargaGaleria );
}
///
/// CallBack de Ajax de CargaGaleria()
///
function CallBackCargaGaleria( xmlhttp )
{
	if( xmlhttp.readyState == 4 && xmlhttp.status == 200 )
	{
		//document.getElementById( 'belt' ).innerHTML = xmlhttp.responseText;
		
		document.getElementById( 'slides_container_galeria' ).innerHTML = xmlhttp.responseText;
		
		$(function(){
			$('#slides').slides({
				preload: true,
				preloadImage: '/img/loading.gif',
				play: 5000,
				pause: 2500,
				hoverPause: true,
				generatePagination: false
			});
		});
		
	}
}
