/* file: Start.js */
var Start = Class.create(Application.prototype, {
	
    TIMEOUT : 3000,
    
    rotatingImages : [],
    loadedImages : {},
    lastIndex : -1,
    currentTimeout : null,
    
    
	init: function () {
		this.updateSessionId();
	}    
 
});
$(document).ready( function () { 
    start = new Start();
    
    
    if ($('#rotator').html()) {
        
        $('#rotator').galleryView({
            panel_width: 600,
            panel_height: 360,
            transition_speed: 1500,
            transition_interval: 5000,
            border: 'none',
            pause_on_hover: true
        });    

        $('img.nav-prev').remove();
        $('img.nav-next').remove();
        $('img.nav-overlay').remove();
    }    
    
} );





