/*=========================================================================================
==== MenuActive ===========================================================================
=========================================================================================*/
//===== Example: $(document).ready(function(){ menuActive('a#web', '0px -164px'); }); =====
function menuActive(menuButton, menuPosition){
	$('div#menu').find(menuButton).css({'background-position':menuPosition});
};
/*=========================================================================================
==== GetNewURL ============================================================================
=========================================================================================*/
function getNewURL(thisAddress){ window.open('http://' + thisAddress); }