	jQuery.noConflict();

		jQuery(document).ready(function(){ 
			try {
				//find homepage last li and add class Interview for highlighting 
				jQuery("#table_of_contents ul li:last-child").addClass('Interview');
				
				//generating menu class, used when menu images from files
				/*
				jQuery('#menu ul li').each(function(){
					var title = jQuery(this).children("a:first").attr('title');
					var a_class = title.replace(/ /g, "_");
					jQuery(this).children("a:first").addClass(a_class.toLowerCase());
				});
				*/
				//for mozilla hidden field height problem, search for hidden input field and add class="hidden" only for contact form
				jQuery(".wpcf7-form input[type='hidden']").addClass('hidden');
			} 
			catch (err) {
				document.write('EROARE: ' + err);
			}				
		});
		
			