/* Copyright (C) 2002-2011 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.2 $ $Date: 2011/12/01 13:54:29 $ */

/* owner: Nico.Westermann@brave.de */

$(document).ready(function(){

	var position_footer = function() {
		var doc_height = $(document).height();
		var win_height = $(window).height();
		if(win_height >= doc_height) {
			var top_pix = doc_height - $('#foot_container').height();
			$('#foot_container').css('top',top_pix+'px');
		}
	}
	position_footer();
	$(window).resize(position_footer);

	$('input,textarea,iframe,a.button').hover(function() {
		$(this).addClass('hover');
		if($(this).hasClass('img_button')) $(this).addClass('img_button_hover');
	}, function() {
		$(this).removeClass('hover img_button_hover');
	});
	$('.bigarrow').hover(function() {
		$(this).addClass('bigarrow_hover');
	}, function() {
		$(this).removeClass('bigarrow_hover');
	});

	if($('div#layout').hasClass('start') && $('.anton_block').length == 0) {
		$('#content_main').prepend('<div id="start_fader_wrapper"><div id="start_fader"></div></div>');
		$('#content_main .start_block_content_wrapper').each(function() {
			$('#start_fader').append($(this));
		});
		$('#start_fader').cycle({
			fx: 'fade',
			timeout: 7000,
			pause: true
		});
	}

	$('.border,.rosabox').append('<div class="clear"></div>');

});

