$(function() {
	$('#izicopy').hover(
		function() {
			$(this).stop().animate({'bottom': '0px'});
		},
		function() {
			$(this).stop().animate({'bottom': '-65px'});
		}
	);
	$('#izicopy a').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
});

