var setHeight = function(src, target) {
	$(window).load( function() {
		h = $(src).height();
		$(target).css('min-height', h -30);
	});	   
};
