function add_target_blank(){
	$('a.target-blank').attr('target', '_blank');	
}
function init_v_center(){
	$(".v_center").each(function(){
		$(this).css('margin-top', "" + (($(this).parent().height()-$(this).height()) / 2) + "px");
	});
}
function init_frontend(){
	add_target_blank();
}
function on_page_load(){
	init_v_center();
}
$(init_frontend);
$(window).load(on_page_load);