$(document).ready(function(){
	
	$('#tabs .tab').hide();
	$('#o-polisie-content').hide();
	
	$('#tabs .tab:first').show();
	$('#tabs .nav li:first').addClass('active');
	
	$('#tabs .nav a').click(function(){
		$('#tabs .nav li.active').removeClass('active');
		$(this).parent().addClass('active');
		var currentTab = $(this).attr('href');
		$('#tabs .tab').hide();
		$(currentTab).show();
		return false;
	});
	
	$('#o-polisie-ing-smart .short a, #box-wide .footer a').click(function(){
		$('#o-polisie-content').show();
		var scrollTo = $(this).attr('href');
		$.scrollTo(scrollTo, 1000 );
	});
	
	$('#tabs .info .text').hide();
	
	$("#tabs .info .q").hover(
		function () {
			//$('.text',$(this).parent()).show();
			$(this).next().show();
	  	},
	  	function () {
			//$('.text',$(this).parent()).hide();
			$(this).next().hide();
		}
	);
	
});
