// JavaScript Document
var dbug =  '<h1>Debuggering:</h1>'

$(document).ready(function(){
	// TODO: and here we go again ....
	$('#pop-menu-close').click( function(e) {
		e.preventDefault();
		$('#pop-up').hide();
	});
	
});

// standart string replace functionality
function str_replace(haystack, needle, replacement) {
	var temp = haystack.split(needle);
	return temp.join(replacement);
}
