$(document).ready(function() {	
	

	$(".row h3 a.title").click(function(){	
	
		var divText = $(this).parent().next('.text'); 
		//alert($(divText).html());
		if($(divText).hasClass('hidden')){
		
			$(".text").addClass('hidden');
	
			
			$(divText).removeClass('hidden');
			//$(".text").removeClass('hidden');
			//$(this).css({color: '#fff'});
			
		}else{
	
			$(divText).addClass('hidden');
		}				
		//$(this).children('.text').css({display:'block' });
		return false;				
	});
	var hash = window.location.hash || location.hash;

	if(hash){
		var divText = $(hash).parent().next('.text'); 
		$(divText).removeClass('hidden');
	}

	

    	 // pod ff wylacza całkiem
    	    if (typeof console == 'undefined') {
    	        var console = {};
    	        console.log = function(msg) {
    	            return;
    	        };
    	    }
});    	    
