function displayWindow(url, width, height) {

    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0, scrollbars=yes, menubar=no' );

}

function okienko(url,width,height,sb,top,left){ 

	window.open(url,'okienko','align=center,location=0,toolbar=0,status=0,location=0,directories=0,resizable=0,scrollbars='+sb+',width='+width+',height='+height+',top='+top+',left='+left+',menubar=no')

}

$().ready(function(){
	$("#main_page_slider").jCarouselLite({
		btnNext: ".main_page_slider_right_button",
		btnPrev: ".main_page_slider_left_button",
		visible:4
	});
	
	$('#tabs_menu li').click(function(e){
		e.preventDefault();
		$('#tabs_menu li').removeClass('active');
		$(this).addClass('active');
		$('#tabs_list').children('div').removeClass('active').eq($(this).index()).addClass('active');
		
		return false;
	})
	
});
