/* Javascripts mediativ.de */
$(document).ready(function() {
	var hoehe = $(window).height();
	var breite = $(window).width();
	if (hoehe-240>=420) {
		$('#main div.c62l').height(hoehe-210);
	} else {
		$('#main div.c62l').height(450);
		$('#foot').css('position', 'relative');
		$('#foot').css('bottom', 'auto');
	}

// Browser resize
	$(window).resize(function() {
		var nhoehe = $(window).height();
		var nbreite = $(window).width();
		if (jQuery.support.leadingWhitespace) {
			document.location.href = document.location.href;
		}
		else if (!jQuery.support.leadingWhitespace) {
			if ((hoehe!=nhoehe) || (breite!=nbreite)) {
				window.location.reload();
			}
		}
	});

// Bild-Mouseover Hauptnavi

		$('#nav li a img+img').hide();
		$('#nav li a.aktiv img+img').fadeIn();

		$('#nav li a.out').mouseenter(function(){
			$('img:first-child', this).fadeOut();
			$('img+img', this).fadeIn();
		});

		$('#nav li a.out').mouseleave(function(){
			$('img+img', this).fadeOut();
			$('img:first-child', this).fadeIn();
		});

		$('#navsub li a img+img').hide();
		$('#navsub li a.aktiv img+img').fadeIn();

		$('#navsub li a.out').mouseenter(function(){
			$('img:first-child', this).fadeOut();
			$('img+img', this).fadeIn();
		});

		$('#navsub li a.out').mouseleave(function(){
			$('img+img', this).fadeOut();
			$('img:first-child', this).fadeIn();
		});

// Slide Textfeld
		var content = $('#content');
		if (content) {
			$(window).load(function() {
		  		content.delay(1500).animate({
		    		top: 170
		  		}, 1200, 'easeOutExpo')
			});
		}
});

function targetBlank (url) {
	blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}


