var secs = 9;
var oneSec = null;
decreaseCounter = function(){
	if(secs > 0){
		oneSec = setTimeout('decreaseCounter()',1000);
		secs--;
		$('#previewCounter').text(''+secs);
	}
	else{
		fuckItLetsGo();
	}
}
fuckItLetsGo = function(){
	uerel = $('a.thumb').attr('href');
	$('#previewCounterCont h3').text('Przekierowuję...');
	window.location = uerel;
}

$(document).ready(function(){
		$('#panicButton').click(function(){
			clearTimeout(oneSec);
			hatsz = $('#previewCounterCont h3');
			hatsz.find('span').remove();
			hatsz.find('a').html("kliknij aby przejść &raquo;")
			
		});
		oneSec = setTimeout('decreaseCounter()',1000);
		$('#reqRedirect').click(function(){
			$('#previewCounterCont h3').text('Przekierowuję...');
			window.location = $('a.thumb').attr('href');
			return false;
		})
});
