$(document).ready(function(){
	if( $( '.menu' ).find( '.active' ).length > 0 ) {
		var $activarrow = $( '.menu' ).find( '.active' );
		var moveleft = ( $activarrow.parent('.poz').innerWidth()/2 ) - ( $activarrow.outerWidth()/2 );
		$activarrow.css({
			'margin-left': moveleft +'px', 
			'display': 'inline'
		});
	}
	
	if( $( '.banner-add' ).length > 0 && $( '.banner-add' ).find( '#redirect' ).html().length > 0 ) {
		$( '.banner-add' ).click(function(){
			top.location.href = $(this).find( '#redirect' ).html();
		}).css( 'cursor', 'pointer' );
	}
});