function showArbeit(id){
	if($('#guegerli'+id).hasClass('bulleton')) return true;
	$('.bullet').each(function() {
		$(this).removeClass('bulleton');
	});
	$('#guegerli'+id).addClass('bulleton');
	
	$("#Content").load('/templates/siro/arbeiten.php', { 'loc': 'Content', id: id });
	$("#Containers").load('/templates/siro/arbeiten.php', { 'loc': 'Containers', id: id });

}
function showArbeitBFA(dir){
	bullets=new Array();
	aktuelleid=0;
	$('.bullet').each(function() {
		if($(this).hasClass('bulleton')) aktuelleid=parseInt(this.id.substr(8));
	});
	aktuellesrc=$('#arbeitenBild').attr('src');
	$("#Content").load('/templates/siro/arbeiten.php', { 'loc': 'Content', 'id': aktuelleid, 'aktuellesrc': aktuellesrc, dir: dir });
}

function hiddeAllpfili() {
		$('.arbeitPfeil').css('display', 'none');
}

function showAllpfili() {
		$('.arbeitPfeil').css('display', 'block');
}

function shownoneR() {
		$('.pfeilrechts').css('display', 'none');
}
function shownoneL() {
		$('.pfeillinks').css('display', 'none');
}
