$(document).ready(function(){
    $('.menu_dropdown').hover(
      function () {
        $('.menu_first_item', this).addClass('menu_slide_down'); 
        $('.menu_list', this).slideDown(33);
        $('.menu_bottom', this).show();
      }, 
      function () {
		$('.menu_list', this).slideUp(33);
		$('.menu_first_item', this).removeClass('menu_slide_down');
        $('.menu_bottom', this).hide();
      }
    );
	$('#pipeline_footer').hide();
	$('a#pipeline_footer-show').click(function() {
		$('#pipeline_footer').fadeIn(750);
		$('#pipeline_footer_open').hide();
		return false;
	});
	$('a#pipeline_footer-hide').click(function() {
		$('#pipeline_footer').hide();
		$('#pipeline_footer_open').show();
		return false;
	});
});


function focusInput(theId,theContent) {
	if (theId.value == theContent) {
		theId.value = '';
	}
}
function blurInput(theId,theContent) {
	if (theId.value == '') {
		theId.value = theContent;
	}
}
