jQuery(document).ready(function() { 
	 jQuery('.trainings .training .desc').hide();
	 
	 jQuery('.trainings .training h3').click(
	 function(){
	jQuery(this).parent().children('.desc').slideToggle("fast");
	return false;
	}
	)
	
	jQuery('form input, form textarea').focus(
	function(){
	jQuery(this).css('border-color','#e20000');
	}
	)
	jQuery('form input, form textarea').blur(
	 function(){
	jQuery(this).css('border-color','#b9b9b9');
	}
	)

	jQuery('span.korespondencja input').change(
	function() {
    if (jQuery('span.korespondencja input').is(':checked')) {
        jQuery('input.kores').attr('disabled', true);
    } else {
        jQuery('input.kores').removeAttr('disabled');
    }   
	})

		jQuery('.inactive a').colorbox({width:"50%", inline:true, href:"#pass"});	
		jQuery('a.rejestracja').removeClass('cboxElement');
		jQuery('#incorrect').colorbox({open:true, width:"50%", inline:true, href:"#pass2"});	
		
  
});


