function blink(time, interval){
    var timer = window.setInterval(function(){
        $(".blink").fadeOut(200).fadeIn(200).fadeOut(300).fadeIn(300);
    }, interval);
}
$(document).ready(function(){
    blink(900000, 4000);
	
	$('.colorbox').colorbox();
	$('.jstate').click(function() {
		var miejscowosc = $(this).text() + ',';
		if (miejscowosc == "Wszystkie,") {
			$('.tableKontakty tr').show();
		} else {
			$('.tableKontakty tr').each(function(){
				var text = $(this).text();
				if (text.indexOf(miejscowosc) != -1) {
					$(this).show();
				} else {
					$(this).hide();
				}
			});
		}
		$('.tableKontakty tr:first').show();
		return false;
	});
});
