//var CONTENT_PATH = //"http://www.hundekumpels.at/";

$(document).ready( function() {
   resizeContentWrapper();
   $(window).resize(function(){         
      resizeContentWrapper();
   });
});

function getContentPath () {
	return (window.location+"").substr(0, (window.location+"").length-1);
}

function resizeContentWrapper () {	
   $("#wrapper").css("height", $(window).height()-75);
   $("#contentwrapper").css("height", $(window).height()-145-40);
   $("#throbber").hide();
   $("#throbber").css("top", $(window).height()/2-40);
   $("#throbber").css("left", $(window).width()/2-40);
   $("#footer").css("top", $(window).height()-75);
}

