
// DOM ready
$(document).ready(function() {
	$("#ort").suggest("/anwalt-suche/ajax?land=D", { });
	// header bild
	rand = parseInt(Math.random()*(3)+1);
	$('#header form').css('background','transparent url(/images/layout/header-bild-'+rand+'.jpg) top left no-repeat');
	// schadenfix startseite
	rand = parseInt(Math.random()*(3)+1);
	$('.startseite #content img:first').attr('src','/viomatrix/imgs/startseite/schadenfix-'+rand+'.jpg');
	// suche nach plz
	$("#header form label").attr("id","as_label_ort");
	$("#header form label").append(' <a href="#">Oder suchen Sie hier nach Postleitzahl</a>.');
	$("#header form input#ort").after('<label id="as_label_plz" for="as_plz">Geben Sie in das Eingabefeld eine Postleitzahl ein. <a href="#">Oder suchen Sie hier nach einem Ort</a>.</label><span id="as_plz_umkreis"><input type="text" style="width:8em" name="as[plz]" id="as_plz"> Umkreis <select id="as_umkreis" name="as[umkreis]"><option value="" selected>kein</option><option value="1">1 km</option><option value="2">2 km</option><option value="5">5 km</option><option value="10">10 km</option><option value="20">20 km</option><option value="30">30 km</option><option value="50">50 km</option></select></span>');
	$("#header form span#as_plz_umkreis, #header form #as_label_plz").hide();
	$("#header form #as_label_ort a").click(function() {
		$("#header form #as_label_ort, #header form input#ort").hide();
		$("#header form #as_label_plz, #header form span#as_plz_umkreis").show();
		return false;
	});
	$("#header form #as_label_plz a").click(function() {
		$("#header form #as_label_ort, #header form input#ort").show();
		$("#header form #as_label_plz, #header form span#as_plz_umkreis").hide();
		return false;
	});
	// downloads -> analytics
	$("a[@href^='/downloads']").click(function(){ pageTracker._trackPageview($(this).attr('href')); });
});

// Document full loaded
$(window).load(function() {
	if ($('#content').height()<$('#navigation').height())
		$('#content').height($('#navigation').height()+20);
});

// IE 6 and below
/////////////////
/*@cc_on
	@if (@_jscript_version < 5.7)
		
		$(document).ready(function() {
			// max-width
			if ($('#container').width()/16 > 54)
				$('#container').css('width','54em');
			// min-width
			if ($('#container').width()/16 < 33)
				$('#container').css('width','33em');
			$('.veranstaltungen_detail #container').css('width','61em');
			// abbr
			$.each($('abbr'), function(key,obj) {
				$(this).after('<acronym class="abbr">'+$(this).html()+'</acronym>');
				$(this).remove();
			});
			// table row hover
			$('tr').hover(function() { $(this).toggleClass('hover'); }, function() { $(this).toggleClass('hover'); });
		});
		
	@end
@*/