

jQuery(document).ready(function ()
{

	$('#popup').click(function() {
		$('#popup').animate({
			opacity: 0
		}, 1000, function() {
    $(this).css("display","none");
		});
	});
	//jQuery(".form_calendar").datepicker({showOn: 'both', buttonImage: 'images/kalender_ikoon.gif'});
	
	jQuery(".form_calendar").datepicker();

});

