$(document).ready(function() {
	// init * switch stylesheet links
	$(".helper a").click(function(){
		getInfoLayer(this.hash)					  
		this.blur();
		return false;
	});
	$(".closer").click(function(){
		closeInfoLayer(this.hash)					  
		this.blur();
		return false;
	});
});

function getInfoLayer(a){
	$(a).show();
}
function closeInfoLayer(b){
	$(b).hide();
}
