$(document).ready(function() {
	
// Hover (without Intent)
	
$(window).resize(function(){
   var width = $('#horizontal-contaner').width()
   $('#overlay').width(width);
})

	
$('#btn-info').click(function() {
  $('#overlay').slideDown(500);
});

$('#btn-close').click(function() {
  $('#overlay').slideUp(500);
});
		
	
});

