jQuery().ready(function(){
	jQuery('#list1b').accordion({
		autoheight: false
	});

	$('#main_automenu a').fadeTo("fast", 1);
	$('.big_img').hide().filter(':first').show();

	$('#main_automenu a').click(function(){
		$('#main_automenu a').fadeTo("fast", 0.8);
		$(this).fadeTo("fast", 1);
        $(this).css("filter","");
	});
});

$(function () {
	$('#main_automenu a').click(function(){
		$('.big_img').hide("slow");
		$('.big_img').filter(this.hash).show("slow");
		return false;
	});
});

function moveTo(tdiv, tpos){
	$('#arrow_rel a').fadeTo("fast", 0);
	$('#'+tdiv).animate({"left": tpos}, "slow", function(){
	$('#arrow_rel a').fadeTo("slow", 1);
	});
	return false;
};