jQuery(function(){

	jQuery.each(jQuery(".rspcnt > .dt > h4"), function() {
	dn = new Date();
	
	b=Date.parse(dn);
	str = jQuery(this).html();
	var d = str.split('.');
	e=d[1]+'/'+d[0]+'/'+'20'+d[2];	
	a=Date.parse(e);
	
		if (b > a){
			 jQuery(this).css({'background-color' : '#333'});
		}
		if ( (b - a < 86400000) && ( b - a > 0 ) ) {
			jQuery(this).css({'background-color' : '#FF0000'});
		}

    });
	jQuery(".hidden").hide();
	jQuery("#barContent").hide();

	jQuery("#bar").hover(function () {
		jQuery("#bar").animate({width: '200px', opacity: '1'},100);
		jQuery("#barContent").css({height: jQuery(window).height()}).fadeIn();
		jQuery("#rnd_photo").css({right: 225}).fadeIn();
	},function () {
		jQuery("#rnd_photo").animate({width:'25px',opacity: '1'},100);
		jQuery("#bar").animate({width: '25px', opacity: '0.2'},100);
		jQuery("#rnd_photo").css({right: 25}).fadeIn();
		jQuery("#barContent").fadeOut();
		jQuery("#barContent").hide();
	});

});
function openDiplom (id) {
	jQuery("#"+id).show();
}

