$(document).ready(function() {
	
	$('.productImg a.zoom, .btnGfxHigherZoom a, a.zoom').colorbox(); //info nt. konfiguracji - http://colorpowered.com/colorbox/
	
	$('.introBoxes .col1 .box').hover(function() {
		$(this).find('span').animate({bottom: '29px'}, 500);
		$(this).find('em').animate({bottom: '0'}, 500);
	}, function() {
		$(this).find('span').animate({bottom: '0'}, 300);
		$(this).find('em').animate({bottom: '-29px'}, 300);
	});
	
});
