// JavaScript Document
$(function(){	
	$('.pageNav').each(function(){
		$(this).css({
			'left': ($(this).parent().width() - $(this).outerWidth())/2,
		});
	});
});
