//<![CDATA[
$(document).ready(function(){
	
	// Inicializamos el shadowbox
	Shadowbox.init();
	/*$('body').ajaxComplete(function(request, settings){ //Para poder utilizar shadowbox despues de peticion AJAX
		Shadowbox.init();
	});*/

	// Decimos que todas los links con ese rel, se habran en una ventana nueva 
	$("a[rel=nueva_ventana]").click(function(){window.open($(this).attr('href'));return false;});
	
	$(document).ready(function() {
		if ($("#fecha").length) $("#fecha").datepicker({dateFormat: "dd/mm/yy", showOn: "button", buttonImage: "/imagenes/comunes/calendar.gif", buttonImageOnly: true, changeYear: true, changeMonth: true});
	});
	
});
//]]>
