function Main(){
	
	var current_image = 0;

    this.init = function(){
    	(function($) {
    		headlineHeight = $('#headLine').height();
    		$('#scrollbarWrapper').css('height', 373 - headlineHeight + "px");
    		$('#scrollbarSlider').css('height', 373 - 24 - headlineHeight + "px");
			
    	})(jQuery);
    }
	
    
	

    var self = this;
}

var main = new Main();

(function($) {
	$(document).ready(function(){
		main.init();
	});

})(jQuery);
