$().ready( function() {

	query = window.location.hash.split("#");
	setQuery(query[1], 'frameset');

	$("frame[name=index]").attr('src', 'content.php?' + query[1]);

});

function setQuery(query, local){

	if(query != undefined) {
		window.location.hash = query;
		//$("frame[name=index]").attr('src', 'content.php?'+query);
	}
	else if(query == undefined && local == undefined) {
		window.location.hash = 'menu=home';
		//$("frame[name=index]").attr('src', 'content.php?menu=home');
	}

}