function setFooterPossitoin()
{
	var menuHeight = $("#menu").innerHeight();
	var mainHeight = $("#main").innerHeight();
	var footerHeight = $("#footer").innerHeight();

	windowHeight = $(window).height();
	if(windowHeight > (menuHeight + mainHeight + footerHeight))	{
		$("#footer").css("top", (windowHeight - footerHeight)+"px");
	} else	{
		$("#footer").css("top", (menuHeight + mainHeight + 7)+"px");
	}
}

function makeRoundedButtons()
{
	$("#specialniNabidkaDetail").border("grey-");
	$("div.produktIn").border("grey-");
	$("a.roundedButton").wrapInner("<span class='inner-rightTop'></span>");
	$("a.roundedButton").wrapInner("<span class='inner-rightBottom'></span>");
	$("a.roundedButton").wrapInner("<span class='inner-leftBottom'></span>");
	$("a.roundedButton").wrapInner("<span class='inner-leftTop'></span>");
	$("a.roundedButton").addClass("roundedButtonJs");
}

$(document).ready(function(){
	makeRoundedButtons();
	/*
	setFooterPossitoin();
	$(window).resize(function(){
		setFooterPossitoin();
	});
	$(window).load(function(){
		setFooterPossitoin();
	});
	*/
});
