function resizeBG()
{
var ratio = 800 / 1200;
// Get browser window size
var browserwidth = $(window).width();
var browserheight = $(window).height();
// Scale the image
if ((browserheight/browserwidth) > ratio){
$('#bgimg').height(browserheight);
$('#bgimg').width(browserheight / ratio);
} else {
$('#bgimg').width(browserwidth);
$('#bgimg').height(browserwidth * ratio);
}
// Center the image
$('#bgimg').css('left', (browserwidth - $('#bgimg').width())/2);
$('#bgimg').css('top', (browserheight - $('#bgimg').height())/2);
}
$(document).ready(function(){
resizeBG();
$('#main_navi ul li a').each(function() {$(this).css('width', $(this).width() + 18);});
if ($('#contactform').length > 0) {
$("#contactform").validationEngine({inlineValidation: true,sucess: false, promptPosition: "topLeft"});
$("#contactform").attr("action","index_qs.php?page=kontaktanfrage"); }
});
$(window).resize(function() {resizeBG(); });