/* TwoFourTwo functions */

$(document).ready(function () {
	// select text in form input on focus
	$("input[type=text]").focus(function () {this.select(); });

});

(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = Math.ceil((ph-ah) / 2);
	$(this).css('margin-top', mh);
	});
};
})(jQuery);

$(document).ready(function(){
		$("#page_summary h2").vAlign();
	});
