$(document).ready(function() {



$('.droppy').mouseover(function() {
	$('.drops').hide();
	$('.drop_1').show();
  });
  

$('.ministries').mouseover(function() {
	$('.drops').hide();
	$('.drop_2').show();
  });


$('.about').mouseover(function() {
	$('.drops').hide();
	$('.drop_3').show();
  });
  
  
$('.shop').mouseover(function() {
	$('.drops').hide();
	$('.drop_4').show();
  });
  




$('.copy_float').mouseenter(function() {
	$('.drops').hide();	
  });


$('.right_background, .left_background, .title_graphic, .partnerships, .blog, .registration, .contact_us, .events, .store').mouseover(function() {
	$('.drops').hide();	
  });


$('.st_pop').click(function(){
	$('.st_pop_bg').delay(250).fadeIn(500, function(){$('.st_pop_holder').delay(250).fadeIn(500);});
	
});

$('.close_st_pop').click(function(){
	$('.st_pop_holder').delay(250).fadeOut(500,function(){$('.st_pop_bg').delay(250).fadeOut(500);});
	
});


});
