$(document).ready(function() {

	$('.threecol section:last-child').addClass('last');
	
	var hash = window.location.hash.replace('#', '');
	if(hash.length == 2) {
		$('#action').css('background-image', "url('./_img/action-schriftzug" + hash + ".png')");
		
		window.setTimeout(quickFill, 100);
	} else if(hash == "change") {
		window.setTimeout(quickFill, 100);
		window.setInterval(function() {
			var num = 1 + Math.floor(Math.random() * 7);
			$('#action').css('background-image', "url('./_img/action-schriftzug0" + num + ".png')");
		}, 2500);
		
	}
	
	$('.helplink').hover(function() {
		$(this).parent().children('.helppopup').show()
	}, function() {
		$(this).parent().parent().find('.helppopup').hide()		
	});
	
});
