//obsługa pressroom

$(document).ready(function(){
	fRepairLinkRightArrowPressRoom();
});

/**
 * naprawa linkow o klasie linkRightArrow (przesuniecie strzalki na srodek w pionie, dosuniecie jej do tekstu)
 */
function fRepairLinkRightArrowPressRoom(){
	
		$('.linkRightArrow').each(function(){
				iWidth = $(this).outerWidth();
				$(this).css('display','block');
				$(this).width(iWidth-10);
				iVerticalMiddle = $(this).height()/2 - 4;
				iVerticalMiddleHover = iVerticalMiddle-242;
				$(this).css('background-position','100% '+iVerticalMiddle+'px');
				$(this+':hover').css('background-position','100% '+iVerticalMiddleHover+'px');
		})
	
}