///////////////////////////////////////////////////////////////////
//                                                               //
// siteenlarge.js                   Version 1.0                  //
//                                                               //
// Programming by Achim Schellenbach 03. Juli 2009               //
//                                                               //
// ALL RIGHTS RESERVED!!!                                        //
//                                                               //
// DIE VERWENDUNG DIESES SCRIPTES IST NUR MIT AUSDRÜCKLICHER     //
// GENEHMIGUNG DES AUTORS ERLAUBT!                               //
//                                                               //
// Copyright 2009 Achim Schellenbach - Online-Dienste            //
//                                                               //
// eMail: webmaster@cgion.net                                    //
//                                                               //
//////////////////////////////////////////////////////////////////

<!--
function BildCheck() {
var breite = screen.width;
if (breite >= 1280) {
for (i = 0; i < document.images.length; ++i) {
Bimg = document.images[i].width;
Himg = document.images[i].height;
neuBimg = Math.round(Bimg * 1.2);
neuHimg = Math.round(Himg * 1.2);
document.getElementsByTagName('img')[i].style.width = neuBimg + 'px';
document.getElementsByTagName('img')[i].style.height = neuHimg + 'px';
var pfad = document.images[i].src;
var von = pfad.lastIndexOf("/");
var bis = pfad.indexOf(".gif");
if (bis > 0) {
var teil = pfad.substring(von, bis);
var neu = pfad.replace(teil, teil + "_1280");
document.getElementsByTagName('img')[i].src = neu;}}}}

var breite = screen.width;
if (breite >= 1280)
document.write('<link rel="stylesheet" type="text/css" href="http://www.klausschumann-mode.de/style_1280.css" />');
//-->

