$(document).ready(function() {
	//Main Navigation Slide Down Effect
	$("#main_nav ul li").mouseover(function() {    
        $(this).children("ul").stop(true, true);
        $(this).children("ul").slideDown(400);        
    }).mouseleave(function() {
        $(this).children("ul").slideUp(200);
    });
	
	//Make input columns the same height as the label they are next to
	var labelHeight = 0;
	$(".contact_form div.EditingFormControlNestedControl").each(function() {
		labelHeight = $(this).prev("label").height();
		$(this).css("min-height", labelHeight + "px");
	});
	
	$(".contact_form .EditingFormControlNestedControl input[type='text'], .contact_form .EditingFormControlNestedControl select").css({ 
		position: 'absolute',
		bottom: '0px',
		left: '0px'
	});
	
	$(".contact_form .EditingFormControlNestedControl table input[type='text'], .contact_form .EditingFormControlNestedControl .short input").css({ 
		position: 'static'
	});
});
