var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	// =HEADER
		$j('#schedule-discovery-session').width($j('#tagline').width());
	
	// =DROPDOWN
		$j('#main-menu > li').mouseenter(function(){
			if($j(this).is('.current-menu-item, .current-page-ancestor')) {
				$j(this).children('a').css('border-bottom', '5px solid #8cc63f');
			} else {
				$j(this).children('a').css('border-bottom', '5px solid #92278f');
			}
			$j(this).children('ul').slideDown();
		}).mouseleave(function(){
			if(!$j(this).is('.current-menu-item, .current-page-ancestor')) {
				$j(this).children('a').css('border-bottom', 'none');
			}
			$j(this).children('ul').slideUp();
		});
	
	// =FAQ TOGGLE
		$j('.faq-question').toggle(function(){
			$j(this).next().slideDown();
			$j('.toggle-hide').fadeOut();
		}, function() {
			$j(this).next().slideUp();
			$j('.toggle-hide').fadeIn();
		});
	
	// =FORM VALIDATION
		$j('.rcform').submit(function(){
			var valid = true;
			$j('.rcform .required').each(function(){
				if ($j(this).val() == "") {
					valid = false;
				}
			});
			if (valid) {
				return true;
			} else {
				alert("Please, fill in all required fields!");
				return false;
			}
		});
	
	// =CHANGE TITLE TEXT ON "LOCKHEED MARTIN" PAGE
		$j('.page-id-773 #title h1').text("The Roving Coach Experience™... it's a conversation all about YOU!");
	
	// =POST TITLE LINE HEIGHT
		$j('.post h2').each(function(){
			if($j(this).height() < 30) {
				$j(this).css('line-height', '40px');
			}
		});
	
});
