$(document).ready(function () {
	
	$(".angebots_auswahl").click(function (){
		$("#angebots > *").css('display', 'none');
		var nr = $(this).attr("rel");
		$("#a" + nr).fadeIn('slow');
	});

	$(".angebots_auswahl").mouseover(function (){
		$(this).css("cursor","pointer");
	});

	$(".angebots_auswahl").mouseout(function (){
		$(this).css("cursor","default");
	});


});

function initRandomBox(typ, anzahl)
{
	var rand = Math.ceil(Math.random() * anzahl);
	$("#" + typ + rand).fadeIn('slow');
}
