$(document).ready(function(){
	function show_overlay(id){
		$(id).fadeIn();
	}

	function hide_overlay(id){
		$(id).fadeOut();
	}
	
});


