jQuery(document).ready(function(){
	$(".tx-nccomments2vacancies-comment-more-info").hide();
	$(".tx-nccomments2vacancies-comment h3").addClass("jq-header-hand");
	
	$(".tx-nccomments2vacancies-comment h3").click(
		function() {
			if ($(this).parent().find(".tx-nccomments2vacancies-comment-more-info").is(':hidden')) {
				$(".tx-nccomments2vacancies-comment .tx-nccomments2vacancies-comment-more-info").hide();
				$(this).parent().find(".tx-nccomments2vacancies-comment-more-info").slideToggle("fast");
			} else {
				$(this).parent().find(".tx-nccomments2vacancies-comment-more-info").slideToggle("fast");
			}
		}
	);

	$(".tx-nccomments2vacancies-datepicker").datepicker({
		showAnim: 'fold',
		clickInput: true,
		changeYear: true,
		minDate: new Date(2009, 1 - 1, 1),
		dateFormat: 'dd-mm-yy'
	});
});
