	$(document).ready(function(){  

	$("#featured2 > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);  
		
		
var dateList = Array();


			$.ajax({ 
			  method: "POST",
			  url: "./phpexe/returneventos.php",
			  cache: false,
			  dataType: "json",
			  success: function(html){ 
			
			  dateList = html;
				
				$("#calendarioD").datepicker({ 
			 	    
					beforeShowDay: function(dateToShow){ 
					return [($.inArray($.datepicker.formatDate('yymmdd', dateToShow),dateList) >= 0), ""];  
				  }	,
				   onSelect: function(dateText, inst) {
					   
					   		if($.inArray(dateText,dateList))
							{
								
					   			$.prettyPhoto.open('calendario.php?evento='+dateText+'&&iframe=true&width=750&height=550','','');
								//$.prettyPhoto.changePage('next');
								//$.prettyPhoto.changePage('previous');
								//$.prettyPhoto.close();

					   			
							}
					   
					   
					   }

				});
				
				
			  }
			  
			 });  
			
			//$(".inline").colorbox({width:"550px"});
			$("a[rel^='prettyPhoto']").prettyPhoto();


		 
	});