/* fisheye */
	$(document).ready(function() {
		$('img.fisheye').each(function() {
			$(this).mouseover(function() {
				$('#forum-name').html($(this).attr('name'));
				$(this).animate({width: "300px"}, 200);
			});
			$(this).mouseout(function() {
				$('#forum-name').html('Wybrane z portfolio');
				$(this).animate({width: "200px"}, 200);
			});
		});
	});


var clock, stardate;
function zegar() 
{
teraz = new Date();

gd = teraz.getHours();
mm = teraz.getMinutes();
ss = teraz.getSeconds();
clock = "" + gd;
if (mm < 10) { clock+= ":0" + mm; } else clock+= ":" + mm;
if (ss < 10) { clock+= ":0" + ss; } else clock+= ":" + ss;

dn = teraz.getDate();
mc = teraz.getMonth()+1;
rr = teraz.getFullYear();
stardate = "" + dn;
if (mc < 10) { stardate+= ".0" + mc; } else stardate+= "." + mc;

document.zegar.data.value = clock + "   " + stardate + "." + rr;
Timer= setTimeout("zegar()",1000);
}
