/*
Produced and Copyright by by Koller Jürgen
Web: Kollermedia.at
Mail: office@kollermedia.at
*/


$(document).ready(function(){

$("#bigimage").css("width","100%").css("height","auto");
$("#maincontent").css("height",$(window).height());

}); //end ready function


$(window).resize(function(){
$("#maincontent").css("height",$(window).height());


$("#bigimage").css("height","auto").css("width","100%");
});


