$(document).ready(function(){setMainContent();setBack(SITE_BACKGROUND_SIZE);$('div.gallery_image').each(function(i){if(!(i%3==0)){$(this).css({"margin-left":"2px"});}});});function setBack(minSize){sw=screen.width;sh=screen.height;if(sw>minSize){$.post('fileadmin/scripts/createimage.php',{image:"templates/css/images/site_background.jpg",sw:sw,sh:sh},function(res){if(res!=false){var bodyBack=document.body;bodyBack.style.backgroundImage='url('+res+')';}});}else{var bodyBack=document.body;bodyBack.style.backgroundImage='url(fileadmin/templates/css/images/site_background.jpg)';bodyBack.style.backgroundRepeat='no-repeat';}}function setMainContent(){wh=document.body.offsetHeight<document.getElementById('rightcol').offsetHeight?document.getElementById('rightcol').offsetHeight:document.body.offsetHeight;if(navigator.userAgent.indexOf('MSIE 6.0')!=-1){$('#maincontent').css({"height":wh+"px","padding-bottom":"0"});}else{document.getElementById('maincontent').style.minHeight=wh+"px";}}