
var picturearray = new makeArray 
("images/pf_pst_combi_videoline2010eg.jpg"
,"images/pf_pst_combi_videoline2000f.jpg"
,"images/pf_pst_combi_videoline2204.jpg"
,"images/pf_pst_profiline2010e_mechanik.jpg"
)


/***********************************
Bildershow als Hoverefekt uber Link
************************************/
function makeArray() {
        this.length = makeArray.arguments.length
        for (var i = 0; i < this.length; i++) this[i+1] = makeArray.arguments[i]
}
function display(m) {
        document.changepicture.src = picturearray[m];
}       


/*********************************************************
Scriptname: JS error blocker
Browser: MSIE(4x-5x) , NS(4x)
**********************************************************/

function stoperror(){ 
return true 
} 
window.onerror=stoperror 


