var SlideShow = new Class({ initialize: function(product_number) { this.product_number = product_number; this.product_width = 758; this.screenwidth = Window.getWidth(); this.product_space = ((this.screenwidth - this.product_width) / 2); this.slide_width = this.product_width + ((this.product_space * 2)); this.content_width = this.product_width + ((this.product_space * 2)); $('content').setStyle('width',(this.content_width * (this.product_number))+'px'); $$('.slide').setStyle('width',this.slide_width+'px'); $$('.slide').setStyle('display','block'); } });