// JavaScript Document
$(document).ready(function() {

	$('#info_on').bind("click",function(e){

			if($(this).attr('class')!='on'){
				$(this).addClass('on');
				$('#info_off').removeClass('on');
				$('#infobox').fadeIn(10);
				//appendhash('info_on');
			}
			e.preventDefault();	
				   
	});
	$('#info_off').bind("click",function(e){
									
			if($(this).attr('class')!='on'){
				$(this).attr('class','on');
				$('#info_on').removeClass('on');
				$('#infobox').fadeOut(10);
				//appendhash('info_off');
			}
			e.preventDefault();	
				   
	});	

	
})

function appendhash(hashtoadd){
	$('a').each(function(){
	
		var currenthref = $(this).attr('href');
		document.location.hash = "#"+hashtoadd;

		$(this).attr('href',currenthref+document.location.hash);
	
	})	
}