
(function ($) {

// VERTICALLY ALIGN FUNCTION FOR PAGE ELEMENTS
jQuery(function($){
$.fn.vAlign = function() {
	return this.each(function(i){
	var ph = $('#main-wrapper').height();
	var ah = $(this).height();
	var mh = (ph - ah) /2;
	$(this).css('margin-top', mh);
	});
};
$('.promo_wrapper').vAlign();
 $('#sidebar_wrapper #main_titles').vAlign();
});


}(jQuery));
