$(document).ready(function () {
	$("#search_std").submit(function () {
		var qv = $("#query").val();
		if (qv.trim() == "") {
			$("#query").css("background-color", "#ff0000");
			$("#query").val("Dieses Feld muss ausgefüllt werden");

			$("#query").one("click", function () {
				$("#query").css("background-color", "#FFF");
				$("#query").val("");
			});

			return false;
		}
		qv = $("#price").val();
		if (qv.trim() != "" && !IsNumeric(qv)) {
			$("#price").css("background-color", "#ff0000");
			$("#price").val("Zahlen von 0-9 und .");

			$("#price").one("click", function () {
				$("#price").css("background-color", "#FFF");
				$("#price").val("");
			});

			return false;
		}
		return true;
	});

	$(".toAuction").click(function (e) {
		e.preventDefault();
		var href = $(this).attr("href");
		if (href != null && href.trim() != "") {
			//			$("#toAuctionForm").attr("action", href);
			//			$("#toAuctionForm").submit();
			window.open(href);
		}
	});

	$('#topkwCloud a').tagcloud({
		size: {
			start: 10,
			end: 18,
			unit: "pt"
		},
		color: {
			start: '#7788FF',
			end: '#F47511'
		}
	});
	$('div.portal a.tkw').tagcloud({
		size: {
			start: 8,
			end: 16,
			unit: "pt"
		},
		color: {
			start: '#7788FF',
			end: '#F47511'
		}
	});
});
