$(document).ready(function() {


	
		var params = location.pathname.split('/');

	
		
		if(params[2] == 'gitarr'){
			$("#boxes").addClass('gitarr');
			$("#boxes").fadeIn();
		}else if(params[2] == 'skate'){
			$("#boxes").addClass('skate');
			$("#boxes").fadeIn();
		}else if(params[2] == 'hall'){
			$("#boxes").addClass('hall');
			$("#boxes").fadeIn();
		}else if(params[2] == 'lila'){
			$("#boxes").addClass('lila');
			$("#boxes").fadeIn();
		}else if(params[2] == 'orange'){
			$("#boxes").addClass('orange');
			$("#boxes").fadeIn();
		}
		
		
	
	
	$('#boxes').click(function(){
		$("#boxes").fadeOut();
	});
	
	
	var iSeconds = 0 ;
	var iMinutes = 0 ;

    incrementTimer();               

	function incrementTimer(){
        iSeconds++;
        if(iSeconds == 12){
                iSeconds = 0 ;
                iMinutes++ ;
                $("#boxes").fadeOut();
        }else{
        	setTimeout(incrementTimer, 1000);
        }
	}


});
