
	 //Wenn Browser-fenster <= 1024 dann width auf 695px!
	 document.observe("dom:loaded", function() {
	 function getWidth()
    {
        var myWidth = 0;
        if (typeof(window.innerWidth) == 'number') myWidth = window.innerWidth;   
        else if (document.documentElement && document.documentElement.clientWidth) myWidth = document.documentElement.clientWidth; 
        else if (document.body && document.body.clientWidth) myWidth = document.body.clientWidth;        return myWidth;
    }
	if(getWidth()<=1024) $('col_main').setStyle({'width': '695px'});
	
	});


