window.addEvent('domready', function () {
	
	$$('.thumb').each (function (item) {
		item.getFirst('a').addEvents({
			'mouseover': function () {
				item.getElements('.see_more').fade('show');
			},
			'mouseout': function () {
				item.getElements('.see_more').fade('hide');
			}
		})
	})		
	
	// (1) Nadaj wszystkich linkon <a href=""> onfocus="blur()
	$$('a').each (function (item) {
		item.addEvent('focus', function () {
			item.blur();
		});
	})	
	
	
	
	/* Galeria milkbox */
	try {
		milkbox.changeOptions({
			resizeTransition: 'quart:out',
			resizeDuration: 700
		
		});
		
		$$('.thumb_photo"').each (function (item) {
			item.setStyle('opacity', .6);
			
			item.addEvent('mouseover', function (event) {
				item.fade('1');
				event.preventDefault();
			})
			item.addEvent('mouseout', function (event) {
				item.fade('.6');
				event.preventDefault();
			})			
		})
	} catch (e) {}	
	
	
	
})


