$(document).ready(function(){

	$("li.menu-item").hoverIntent( menuIn, menuOut )
	
	$(".col-2.column ul li").mouseenter(function(event){
		$(this).children('div').show();
		$(this).children('div').height(0);		
		$(this).children('div').animate({"height":100},200);
	});
	
	$(".col-2.column ul li").mouseleave(function(event){
		$(this).children('div').hide();		
	});
	
	$("#mc_mv_EMAIL").focus(function(event){
		$('#mailchimp_hide').show();		
	});
	
	$(".widget_twitter h3").click(function(event){
		window.open($(".widget_twitter h3 a").attr('href'), 'twitter', 'width=700,height=500');
	});
	
	$("#facebook_footer").click(function(event){
		window.open($("#facebook_footer a").attr('href'), 'facebook', 'width=700,height=500');
	});	
});

function menuIn(){  
		var accesscoords = $('#access').position();
		var parentcoords = $(this).position();
		var coords = parentcoords.left - accesscoords.left;
		$(this).children('ul.dropdown').css({left: -coords});
		$(this).children('ul.dropdown').show();
}

function menuOut(){  
		$(this).children('ul.dropdown').hide();
}



