$(document).ready( function() {		
	$("a.fbox").fancybox({});
	$().supersleight();
	
	$(function() {
		$("#datepicker").click(function(){
			$("#calendar").fadeIn("fast");
			$("#calendar").hover(function(){}, function(){$("#calendar").fadeOut("slow")});							
		});
	});
});


	
function changeDate(month, year, yopt){
		$.post("inc/ajax/wedding_calendar.php", {'month':month, 'year': year, 'yopt':yopt}, function(data){
			$("#calendar").html(data);												 
			});		
}