// JavaScript Document
	
window.addEvent('load', function(){
	var t1=0;
	var t2=0;
	var c=0;
	if($('content_right_top')!=null)
	t1 = $('content_right_top').offsetHeight;
	if($('content_right_bottom')!=null)
	t2 = $('content_right_bottom').offsetHeight;
	if($('content_left_cont')!=null)
	c = $('content_left_cont').offsetHeight;
	c+=70;
	if(c<t1+t2){
		c = t1+t2-70;
			if($('content_left_cont')!=null)
		$('content_left_cont').setStyle("height",c+"px");
		}
		
	if($('print_button')!=null){	
		$('print_button').addEvent('click',function(){
			if (!window.print){
			return
			}
			window.print()

			});
		$('print_button').addEvent('mouseover',function(){
			this.src ='./images/drukuj1.jpg';
			});
		$('print_button').addEvent('mouseout',function(){
			this.src ='./images/drukuj2.jpg';
			});
	}
if($('baner_click_area')!=null){	
		$('baner_click_area').addEvent('click',function(){
			location.href= 'index.php?go=oferta';
});
}
	
	new SmoothScroll();

	});

