// JavaScript Document

$(document).ready(function(){
	jQuery.extend(DateInput.DEFAULT_OPTS, {
	  month_names: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
	  short_month_names: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
	  short_day_names: ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"]
	});
	$("#entrada, #salida").date_input();
			   
						   
	/*$(".mini img").click(function(){
		var data = "./imgs/thum2.php?t=g&img="+$(this).attr("title");
		$("#grande img").attr({src: data}); 
	});*/
	
	
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='light']").colorbox();
	$("#click").click(function(){ 
		$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		return false;
	});

});
