$(document).ready(function(){

	$('.menu_nav').hide().find('li a').click(function() {
		alert('Sorry we are currently working on this functionality');
	});
	
	$('.hide').hide();
	
	$('#augustine_nav').css('opacity', '0.2')
	
	$('#formsearch').hide().find('input[name=button_search]').click(function() {
		alert('Sorry, This feature has not yet been enabled. Please check back soon. ');
		return false;
	});
	
	$('#cont_mission').hide();
	$('#cont_mission, #cont_comingsoon').find('a.hbgrm').click(function() {
		var p_hbg = $(this).parent();
		if(p_hbg.slideUp('fast').attr('id') == 'cont_comingsoon'){
			$('#cont_mission').slideDown('slow');
		}else{
			$('#cont_comingsoon').slideDown('slow');
		}
		return false;
	});
	
});
