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