$(document).ready(function() {
	
	// Select all links with lightbox class
	SexyLightbox.initialize({color:'black', dir: 'sexyimages'});



	//Carrusel mensjaes	
	jQuery('#mycarousel').jcarousel({
																		auto: 5,
																		wrap: 'both',
																		scroll: 1,
																		animation: 'slow',
																	 
																		initCallback: mycarousel_initCallback
																		}); 



	$('#mensajeLoading').hide();
	
	/*callAjaxCarburando($("#aFecha option.pos").val());
	$("#aFecha option.pos").attr('selected','selected');*/
	
	$('#aFecha').removeAttr('disabled');
	//$('a.lightbox').lightBox(); // Select all links with lightbox class
	$('#aFecha').change(function(){
							var dir=$('#aFecha').val()
							callAjaxCarburando(dir);
							}
							);

});

function callAjaxCarburando(dir){
	var o=$('#aFecha option:selected').attr('class');
	if($('#aFecha').val()=='')return false;
	$('#show').hide();
	$('#mensajeLoading').show();
	$.ajax({
					url: 'incs/ajaxPosiciones.php',
					data: 't=tc&o='+o+'&a='+dir,
					type: 'POST',
					success: function(data) {
						$('#mensajeLoading').hide();
						$('#show').html(data);
						$('#show').show().slideDown("slow");
					}
				});
	
}


function mycarousel_initCallback(carousel) {
	// Pause autoscrolling if the user moves with the cursor over the clip.
	carousel.clip.hover(function() {
	carousel.stopAuto();
	}, function() {
	carousel.startAuto();
	});
 };

