jQuery(document).ready(function() {

		// Aretace bloku na homepage
		if ($('div.promoAreaIndex').height() != null) {
			aretaceBottom ();
		}
		
});

$(window).resize(function() {
	aretaceBottom ();
});

function aretaceBottom () {
		if (winH()<=700) {
				$('div#bottomed').css({'position' : 'absolute', 'top' : '655px'});
				$('div#indexPromos').css({'position' : 'absolute', 'top' : '480px'});
		} else {
				$('div#bottomed').css({'position' : 'fixed', 'top' : 'auto', 'bottom' : '0'});
				$('div#indexPromos').css({'position' : 'fixed', 'top' : 'auto', 'bottom' : '71px'});
		}
}

