﻿(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.VerticalAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = (ph - ah) / 2;
	

	   if($.browser.msie){
		  $(this).css('margin-top', mh + 2);
	   }else{
		  $(this).css('padding-top', mh);
	   }
	
	});
};
})(jQuery);
