$(document).ready(function() {
	$('.newWin').attr('target','_blank');
});


//wait until all images are loaded - they determine the vertical height
$(window).load(function() {
	$('.valign').vAlign();
});

(function ($) {
// VERTICALLY ALIGN FUNCTION
//from http://seodenver.com/2008/09/08/simple-vertical-align-plugin-for-jquery/
$.fn.vAlign = function() {
	return this.each(function(i){
		var ah = $(this).height();
		var ph = $(this).parent().height();
		var mh = (ph - ah) / 2;
		$(this).css('padding-top', mh);
	});
};
})(jQuery);
