jQuery(document).ready(function() {
	jQuery('body.page .page-content p:first').addClass('first-paragraph');
	
	//hide placeholder, industry menu, show type
	jQuery('#reveal-type-menu').click(function(){  
		//hide placeholder and industry menu
		jQuery("#nav-placeholder").hide();
		jQuery("#portfolio-industry").hide();
		jQuery("#portfolio-type").show();
	});
    
    //hide placeholder, industry menu, show type
	jQuery('#reveal-industry-menu').click(function(){  
		//hide placeholder and industry menu
		jQuery("#nav-placeholder").hide();
		jQuery("#portfolio-type").hide();
		jQuery("#portfolio-industry").show();
	});
	
	jQuery("body.page-id-6 form label:contains('*')").addClass('required-field');
    
});
